X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=app%2Fdemo%2Fdemo.mk;h=1347fce901c874e88f41636628eea1f6ca9abc8d;hb=4d6d308ca900a435e80acf51b71e3ea7eccd8d5c;hp=14d5ca2da6c79800bb5d8f54e95d1a9320859919;hpb=c49c99e64ee64ad490b2aea2d6c6d8f9f6d225db;p=bertos.git diff --git a/app/demo/demo.mk b/app/demo/demo.mk index 14d5ca2d..1347fce9 100755 --- a/app/demo/demo.mk +++ b/app/demo/demo.mk @@ -8,6 +8,9 @@ # Author: Bernardo Innocenti # # $Log$ +# Revision 1.2 2006/03/27 04:49:50 bernie +# Add bouncing logo demo. +# # Revision 1.1 2006/03/22 09:52:13 bernie # Add demo application. # @@ -41,6 +44,7 @@ demo_CSRC = \ fonts/luBS14.c \ fonts/ncenB18.c \ icons/artwork.c \ + icons/logo.c \ drv/kbd.c \ drv/timer.c \ drv/buzzer.c \ @@ -68,11 +72,12 @@ $(OBJDIR)/demo/drv/lcd_gfx_qt.o: drv/lcd_gfx_qt_moc.cpp EMUL_CFLAGS = -I/usr/local/kde4/include/Qt -I/usr/local/kde4/include -DQT_CLEAN_NAMESPACE -DQT3_SUPPORT EMUL_LDFLAGS = -L /usr/local/kde4/lib64 -lQtGui -lQtCore demo_CFLAGS = -Os -D_QT=4 -D'ARCH=ARCH_EMUL' -Ihw $(EMUL_CFLAGS) +demo_CXXFLAGS = -Os -D_QT=4 -D'ARCH=ARCH_EMUL' -Ihw $(EMUL_CFLAGS) demo_LDFLAGS = $(EMUL_LDFLAGS) # Debug stuff -#ifeq ($(demo_DEBUG),1) -# demo_CFLAGS += -D_DEBUG +ifeq ($(demo_DEBUG),1) + demo_CFLAGS += -D_DEBUG # demo_PCSRC += drv/kdebug.c -#endif +endif