diff options
| author | Greg Ercolano <erco@seriss.com> | 2010-06-06 20:28:37 +0000 |
|---|---|---|
| committer | Greg Ercolano <erco@seriss.com> | 2010-06-06 20:28:37 +0000 |
| commit | 384929e7d21d8bc59ca49ef996c1d4daf9e84a58 (patch) | |
| tree | e0a9168416d8f6e628b12d7552a899484fd2e822 /examples/Makefile | |
| parent | cc7b798179491b895c8a18d638681367792df828 (diff) | |
Added examples directory
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@7628 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'examples/Makefile')
| -rw-r--r-- | examples/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
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 |
