1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 16:07:45 +00:00
serenity/DevTools/HackStudio/Makefile
Andreas Kling b81f6f2c43 HackStudio: Rename TextDocument => ProjectFile
TextDocument was not the right name, and got even more confusing with
the addition of GTextDocument in LibGUI.
2019-11-01 21:31:06 +01:00

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