mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 13:48:12 +00:00

We're starting with a very basic decoding API and only ISO-8859-1 and UTF-8 decoding (and UTF-8 decoding is really a no-op since String is expected to be UTF-8.)
23 lines
463 B
Makefile
23 lines
463 B
Makefile
OBJS = \
|
|
Project.o \
|
|
ProjectFile.o \
|
|
TerminalWrapper.o \
|
|
FindInFilesWidget.o \
|
|
ProcessStateWidget.o \
|
|
FormEditorWidget.o \
|
|
FormWidget.o \
|
|
Editor.o \
|
|
EditorWrapper.o \
|
|
Locator.o \
|
|
Tool.o \
|
|
CursorTool.o \
|
|
WidgetTool.o \
|
|
WidgetTreeModel.o \
|
|
Debugger.o \
|
|
main.o
|
|
|
|
PROGRAM = HackStudio
|
|
|
|
LIB_DEPS = GUI Web TextCodec VT Protocol Markdown Gfx IPC Thread Pthread Core JS Debug
|
|
|
|
include ../../Makefile.common
|