mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 16:07:45 +00:00

TextDocument was not the right name, and got even more confusing with the addition of GTextDocument in LibGUI.
31 lines
530 B
Makefile
31 lines
530 B
Makefile
include ../../Makefile.common
|
|
|
|
OBJS = \
|
|
Project.o \
|
|
ProjectFile.o \
|
|
TerminalWrapper.o \
|
|
FindInFilesWidget.o \
|
|
ProcessStateWidget.o \
|
|
CppLexer.o \
|
|
Editor.o \
|
|
EditorWrapper.o \
|
|
Locator.o \
|
|
main.o
|
|
|
|
APP = HackStudio
|
|
|
|
DEFINES += -DUSERLAND
|
|
|
|
all: $(APP)
|
|
|
|
$(APP): $(OBJS)
|
|
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lvt -lhtml -lmarkdown -lgui -ldraw -lthread -lcore -lc
|
|
|
|
.cpp.o:
|
|
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
|
|
|
|
-include $(OBJS:%.o=%.d)
|
|
|
|
clean:
|
|
@echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
|
|
|