summaryrefslogtreecommitdiff
path: root/progs/redbook
diff options
context:
space:
mode:
authorPhilippe Houdoin <phoudoin@freedesktop.org>2004-08-14 10:05:33 +0000
committerPhilippe Houdoin <phoudoin@freedesktop.org>2004-08-14 10:05:33 +0000
commit789dd56699f11d10b99649b324943e790e517a3f (patch)
treed0481a3d416df4ee3853d8822f084d0bbc42a8eb /progs/redbook
parentea446b56abab8752969241de995ba87eb111bc58 (diff)
Obsolete the BeOS-specific makefile as we now build using standard Makefiles chain.
Diffstat (limited to 'progs/redbook')
-rw-r--r--progs/redbook/Makefile.BeOS-R459
1 files changed, 0 insertions, 59 deletions
diff --git a/progs/redbook/Makefile.BeOS-R4 b/progs/redbook/Makefile.BeOS-R4
deleted file mode 100644
index ad6f97caa2..0000000000
--- a/progs/redbook/Makefile.BeOS-R4
+++ /dev/null
@@ -1,59 +0,0 @@
-
-# Makefile for OpenGL Programming Guide programs for BeOS R4
-# This file is in the public domain.
-
-##### MACROS #####
-
-INCDIR = ../include
-LIBDIR = ../lib
-
-GL_LIBS = -L$(LIBDIR) -L/boot/home/config/lib -Xlinker -rpath $(LIBDIR) -lbe -lglut -lGLU -lGL $(XLIBS)
-
-LIB_DEP = $(LIBDIR)/$(GL_LIB) $(LIBDIR)/$(GLU_LIB) $(LIBDIR)/$(GLUT_LIB)
-
-PROGS = aaindex aapoly aargb accanti accpersp alpha alpha3D anti \
- bezcurve bezmesh checker clip colormat cube depthcue dof \
- double drawf feedback fog fogindex font hello image light \
- lines list material mipmap model movelight nurbs pickdepth \
- picksquare plane planet polyoff polys robot sccolorlight \
- scene scenebamb sceneflat select smooth stencil stroke surface \
- teaambient teapots tess tesswind texbind texgen texprox texsub \
- texturesurf torus unproject varray wrap
-
-
-##### RULES #####
-
-.SUFFIXES:
-.SUFFIXES: .c
-
-.c: $(LIB_DEP)
- $(CC) -I$(INCDIR) $(CFLAGS) $< $(GL_LIBS) -o $@
-
-
-
-##### TARGETS #####
-
-default:
- @echo "Specify a target configuration"
-
-clean:
- -rm *.o *~
-
-realclean:
- -rm $(PROGS)
- -rm *.o *~
-
-targets: $(PROGS)
-
-# execute all programs
-exec: $(PROGS)
- @for prog in $(PROGS) ; \
- do \
- echo -n "Running $$prog ..." ; \
- $$prog ; \
- echo ; \
- done
-
-
-include ../Make-config
-