diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-10-06 18:21:25 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-10-06 18:21:25 +0000 |
| commit | f9039b2ae21988783feae9b362818e7923e82d14 (patch) | |
| tree | 6d6fe3679d73448758f9794e7d4d4f6b22a4adad /test/Makefile | |
| parent | 67e89232f9ba067825a158734a09e0fa21aacbe3 (diff) | |
Initial revision
git-svn-id: file:///fltk/svn/fltk/trunk@2 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/Makefile')
| -rw-r--r-- | test/Makefile | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 000000000..384a05103 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,51 @@ +ALL = adjuster arc ask bitmap boxtype browser button buttons checkers \ + clock colbrowser color_chooser cube cursor curve demo doublebuffer \ + file_chooser fonts forms fractals fullscreen gl_overlay glpuzzle \ + hello iconize image input keyboard label list_visuals mandelbrot \ + menubar message minimum navigation output overlay pixmap \ + pixmap_browser radio resizebox scroll shape shiny subwindow \ + symbols tabs tile valuators fast_slow resize pack inactive style + +all: ${ALL} + +include ../makeinclude + +${ALL} : ../lib/$(LIBNAME) + +.SUFFIXES : .C .c .o .do + +.C: + @echo $@: + @$(CXX) -I.. $(CXXFLAGS) $< -L../lib -lfltk ${LDLIBS} -o $@ + +# Programs needing the OpenGL libraries: +cube: cube.C + @echo $@: + @${CXX} -I.. ${CXXFLAGS} cube.C -L../lib -lfltk ${GLDLIBS} -o $@ +fullscreen: fullscreen.C + @echo $@: + @${CXX} -I.. ${CXXFLAGS} fullscreen.C -L../lib -lfltk ${GLDLIBS} -o $@ +fractals: fractals.C + @echo $@: + @${CXX} -I.. ${CXXFLAGS} fractals.C -L../lib -lfltk ${GLDLIBS} -o $@ +gl_overlay: gl_overlay.C + @echo $@: + @${CXX} -I.. ${CXXFLAGS} gl_overlay.C -L../lib -lfltk ${GLDLIBS} -o $@ +glpuzzle: glpuzzle.C + @echo $@: + @${CXX} -I.. ${CXXFLAGS} glpuzzle.C -L../lib -lfltk ${GLDLIBS} -o $@ +shape: shape.C + @echo $@: + @${CXX} -I.. ${CXXFLAGS} shape.C -L../lib -lfltk ${GLDLIBS} -o $@ +shiny: shiny.C + @echo $@: + @${CXX} -I.. ${CXXFLAGS} shiny.C -L../lib -lfltk ${GLDLIBS} -o $@ + +# If you have libjpeg installed, you might want to try this test program: + +jpeg_image: jpeg_image.C + @echo $@: + @${CXX} -I.. ${CXXFLAGS} -I../../../local/jpeg-6b -L../../../local/jpeg-6b jpeg_image.C -L../lib -lfltk ${LDLIBS} -ljpeg -lXext -o $@ + +clean: + -rm -f ${ALL} jpeg_image *~ |
