summaryrefslogtreecommitdiff
path: root/test/Makefile
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2005-11-25 20:40:16 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2005-11-25 20:40:16 +0000
commit9e8a88e66cb9e7739542d61e09c803cecc7e6248 (patch)
tree77e793b1f28568c3fc8b8b2cd146f34c66cd89d8 /test/Makefile
parentfe286dfe7b0ae6827942d40586906431c1d97287 (diff)
Fix mousewheel handler bug (using wrong variable in initial check)
Add sudoku game app (fun for the holidays! :) Use "-Os -g" as the default optimization settings. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@4652 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile
index 2886ed15e..e31c8d45a 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -85,6 +85,7 @@ CPPFILES =\
scroll.cxx \
shape.cxx \
subwindow.cxx \
+ sudoku.cxx \
symbols.cxx \
tabs.cxx \
threads.cxx \
@@ -142,6 +143,7 @@ ALL = \
resizebox$(EXEEXT) \
scroll$(EXEEXT) \
subwindow$(EXEEXT) \
+ sudoku$(EXEEXT) \
symbols$(EXEEXT) \
tabs$(EXEEXT) \
$(THREADS) \
@@ -331,6 +333,11 @@ scroll$(EXEEXT): scroll.o
subwindow$(EXEEXT): subwindow.o
+sudoku$(EXEEXT): sudoku.o
+ echo Linking $@...
+ $(CXX) -I.. $(CXXFLAGS) sudoku.o -o $@ $(LINKFLTK) $(LDLIBS)
+ $(CP) sudoku$(EXEEXT) sudoku.app/Contents/MacOS
+
symbols$(EXEEXT): symbols.o
tabs$(EXEEXT): tabs.o