summaryrefslogtreecommitdiff
path: root/Demos/WidgetGallery/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Demos/WidgetGallery/Makefile')
-rw-r--r--Demos/WidgetGallery/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/Demos/WidgetGallery/Makefile b/Demos/WidgetGallery/Makefile
new file mode 100644
index 0000000000..f7f87cbc57
--- /dev/null
+++ b/Demos/WidgetGallery/Makefile
@@ -0,0 +1,22 @@
+include ../../Makefile.common
+
+OBJS = \
+ main.o
+
+APP = WidgetGallery
+
+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
+