summaryrefslogtreecommitdiff
path: root/xc/extras/Mesa/samples/Makefile.DJ
diff options
context:
space:
mode:
authordawes <dawes>2000-12-05 16:38:19 +0000
committerdawes <dawes>2000-12-05 16:38:19 +0000
commitde862f7f2c68c12cbfdb72a72c4ea6e97c968f90 (patch)
treedd8e73c0ad0f1ad5a9929f858bd69b975751ec5c /xc/extras/Mesa/samples/Makefile.DJ
parent978cb1e87ff7bfba913e89cc87b302be078c7348 (diff)
Import of XFree86 4.0.1gX_4_0_1h
Diffstat (limited to 'xc/extras/Mesa/samples/Makefile.DJ')
-rw-r--r--xc/extras/Mesa/samples/Makefile.DJ36
1 files changed, 36 insertions, 0 deletions
diff --git a/xc/extras/Mesa/samples/Makefile.DJ b/xc/extras/Mesa/samples/Makefile.DJ
new file mode 100644
index 000000000..956a895d1
--- /dev/null
+++ b/xc/extras/Mesa/samples/Makefile.DJ
@@ -0,0 +1,36 @@
+# $Id: Makefile.DJ,v 1.1.1.1 2000/12/05 16:38:38 dawes Exp $
+
+# Makefile for sample programs for MS-DOS with DJGPP
+
+##### MACROS #####
+
+INCDIR = ../include
+
+GL_LIBS = ../lib/dosglut.a ../lib/dosglub.a ../lib/dosmesa.a
+
+LIB_DEP = $(GL_LIBS)
+
+PROGS = accum bitmap1 bitmap2 blendeq blendxor copy depth \
+ eval fog font line logo nurb olympic \
+ point prim quad select shape \
+ sphere star stencil stretch texture \
+ tri wave
+
+##### RULES #####
+
+.c: $(LIB_DEP)
+ gcc -I$(INCDIR) $(CFLAGS) $< $(LIB_DEP) -o $@
+
+
+##### TARGETS #####
+
+default: $(PROGS)
+
+clean:
+ del *.
+
+realclean: clean
+ del *.exe
+
+
+