mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 02:27:35 +00:00

This is a simple test app with its UI generated from a VisualBuilder form. The name is probably silly, but who cares. :^)
27 lines
422 B
Makefile
27 lines
422 B
Makefile
include ../../Makefile.common
|
|
|
|
OBJS = \
|
|
main.o
|
|
|
|
APP = HelloWorld2
|
|
|
|
DEFINES += -DUSERLAND
|
|
|
|
all: $(APP)
|
|
|
|
main.cpp: UI_HelloWorld2.h
|
|
|
|
UI_HelloWorld2.h: HelloWorld2.frm
|
|
../../DevTools/FormCompiler/FormCompiler $< > $@
|
|
|
|
$(APP): $(OBJS)
|
|
$(LD) -o $(APP) $(LDFLAGS) $(OBJS) -lgui -lcore -lc
|
|
|
|
.cpp.o:
|
|
@echo "CXX $<"; $(CXX) $(CXXFLAGS) -o $@ -c $<
|
|
|
|
-include $(OBJS:%.o=%.d)
|
|
|
|
clean:
|
|
@echo "CLEAN"; rm -f $(APP) $(OBJS) *.d
|
|
|