1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 08:07:45 +00:00
serenity/DevTools/HackStudio/Makefile
Andreas Kling d5f735ecec HackStudio: Show the edited form widget's widget tree in the tree view
This patch introduces a simple WidgetTreeModel that models the widget
tree inside of a given root GWidget.
2019-11-11 22:20:02 +01:00

37 lines
649 B
Makefile

include ../../Makefile.common
OBJS = \
Project.o \
ProjectFile.o \
TerminalWrapper.o \
FindInFilesWidget.o \
ProcessStateWidget.o \
FormEditorWidget.o \
FormWidget.o \
CppLexer.o \
Editor.o \
EditorWrapper.o \
Locator.o \
Tool.o \
CursorTool.o \
WidgetTool.o \
WidgetTreeModel.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