mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-02-16 04:35:58 +00:00
This needs more work and polish, but it's a step in a more pleasant and useful direction. Also turn QuickShow into a fully-fledged "application". (By that, I really just mean giving it its own Applications/ subdirectory.)
24 lines
324 B
Makefile
24 lines
324 B
Makefile
include ../../Makefile.common
|
|
|
|
OBJS = \
|
|
QSWidget.o \
|
|
main.o
|
|
|
|
APP = QuickShow
|
|
|
|
DEFINES += -DUSERLAND
|
|
|
|
all: $(APP)
|
|
|
|
$(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
|
|
|