From 384929e7d21d8bc59ca49ef996c1d4daf9e84a58 Mon Sep 17 00:00:00 2001 From: Greg Ercolano Date: Sun, 6 Jun 2010 20:28:37 +0000 Subject: Added examples directory git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7628 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- examples/Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 examples/Makefile (limited to 'examples/Makefile') diff --git a/examples/Makefile b/examples/Makefile new file mode 100644 index 000000000..46aa43532 --- /dev/null +++ b/examples/Makefile @@ -0,0 +1,19 @@ +include ../makeinclude + +ALL = tabs-simple$(EXEEXT) \ + tree-simple$(EXEEXT) + +# default target -- build everything +default: $(ALL) + +tabs-simple$(EXEEXT): tabs-simple.cxx + fltk-config --compile tabs-simple.cxx + +tree-simple$(EXEEXT): tree-simple.cxx + fltk-config --compile tree-simple.cxx + +# clean everything +clean: + $(RM) $(ALL) + $(RM) *.o + $(RM) core -- cgit v1.2.3