mirror of
ssh://git.janware.com/srv/git/janware/proj/jw-pkg
synced 2026-01-15 03:53:32 +01:00
17 lines
264 B
Makefile
17 lines
264 B
Makefile
|
|
LOCAL_CPP += main.cpp
|
||
|
|
YAPP_CLASS ?= YApplication
|
||
|
|
|
||
|
|
all:
|
||
|
|
install:
|
||
|
|
clean: clean.yapp
|
||
|
|
distclean:
|
||
|
|
|
||
|
|
include $(MODDIR)/make/exe.mk
|
||
|
|
|
||
|
|
clean.yapp:
|
||
|
|
rm -f main.cpp
|
||
|
|
|
||
|
|
main.cpp: $(YAPP_CLASS).h
|
||
|
|
echo -e "#include <YAppRunner.h>\n#include <$<>\nyapp_main($(basename $<))" > $@
|
||
|
|
|
||
|
|
|