diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-03-25 21:39:01 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-03-25 21:39:01 +0000 |
| commit | 5c360947ee68c9734ef2dc4868c07d3afe6ab1f0 (patch) | |
| tree | a68e71d90d91b752c3c61d64e157af08dc408e52 /test | |
| parent | 6c796f88c7459fa4262f936dc9c7c02fa01e95e7 (diff) | |
Move forms code to fltk_forms library, a la 2.0.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2027 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test')
| -rw-r--r-- | test/Makefile | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index c9b8f06fa..5f279ac8e 100644 --- a/test/Makefile +++ b/test/Makefile @@ -1,5 +1,5 @@ # -# "$Id: Makefile,v 1.19.2.7.2.29 2002/01/15 01:33:16 easysw Exp $" +# "$Id: Makefile,v 1.19.2.7.2.30 2002/03/25 21:39:01 easysw Exp $" # # Test/example program makefile for the Fast Light Tool Kit (FLTK). # @@ -199,6 +199,9 @@ checkers$(EXEEXT): checkers.o clock$(EXEEXT): clock.o colbrowser$(EXEEXT): colbrowser.o + echo Linking $@... + $(CXX) -I.. $(CXXFLAGS) $< -o $@ $(LINKFLTKFORMS) $(LDLIBS) + $(POSTBUILD) $@ ../FL/mac.r color_chooser$(EXEEXT): color_chooser.o @@ -207,6 +210,9 @@ cursor$(EXEEXT): cursor.o curve$(EXEEXT): curve.o demo$(EXEEXT): demo.o + echo Linking $@... + $(CXX) -I.. $(CXXFLAGS) $< -o $@ $(LINKFLTKFORMS) $(LDLIBS) + $(POSTBUILD) $@ ../FL/mac.r doublebuffer$(EXEEXT): doublebuffer.o @@ -226,6 +232,9 @@ file_chooser$(EXEEXT): file_chooser.o fonts$(EXEEXT): fonts.o forms$(EXEEXT): forms.o + echo Linking $@... + $(CXX) -I.. $(CXXFLAGS) $< -o $@ $(LINKFLTKFORMS) $(LDLIBS) + $(POSTBUILD) $@ ../FL/mac.r hello$(EXEEXT): hello.o @@ -250,6 +259,9 @@ keyboard$(EXEEXT): keyboard_ui.o keyboard.o keyboard_ui.o: keyboard_ui.h ../fluid/fluid label$(EXEEXT): label.o + echo Linking $@... + $(CXX) -I.. $(CXXFLAGS) $< -o $@ $(LINKFLTKFORMS) $(LDLIBS) + $(POSTBUILD) $@ ../FL/mac.r line_style$(EXEEXT): line_style.o @@ -270,6 +282,9 @@ minimum$(EXEEXT): minimum.o navigation$(EXEEXT): navigation.o output$(EXEEXT): output.o + echo Linking $@... + $(CXX) -I.. $(CXXFLAGS) $< -o $@ $(LINKFLTKFORMS) $(LDLIBS) + $(POSTBUILD) $@ ../FL/mac.r overlay$(EXEEXT): overlay.o @@ -354,5 +369,5 @@ shape$(EXEEXT): shape.o # -# End of "$Id: Makefile,v 1.19.2.7.2.29 2002/01/15 01:33:16 easysw Exp $". +# End of "$Id: Makefile,v 1.19.2.7.2.30 2002/03/25 21:39:01 easysw Exp $". # |
