summaryrefslogtreecommitdiff
path: root/progs/miniglx/Makefile
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2003-08-06 17:47:15 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2003-08-06 17:47:15 +0000
commita7ea785a104a2254ace3b17ff0bde8231295f0fa (patch)
treea62b678f19e4114fe522c3ba83bb404c15199c2a /progs/miniglx/Makefile
parentfb4d5492e01dffc83ce9129263409eebf4b220aa (diff)
miniglx test programs
Diffstat (limited to 'progs/miniglx/Makefile')
-rw-r--r--progs/miniglx/Makefile30
1 files changed, 30 insertions, 0 deletions
diff --git a/progs/miniglx/Makefile b/progs/miniglx/Makefile
new file mode 100644
index 0000000000..48923ebcff
--- /dev/null
+++ b/progs/miniglx/Makefile
@@ -0,0 +1,30 @@
+
+# Simple makefile for compiling test programs on Linux
+# These programs aren't intended to be included with the normal
+# distro. They're not too interesting but they're good for testing.
+
+
+CC = gcc
+CFLAGS = -g -I../include
+LIBS = -L../lib -lGL -lGLU -lglut -lm -Wl,-rpath,../lib
+
+PROGS = miniglxtest miniglxsample sample_server sample_server2 manytex texline
+
+
+##### RULES #####
+
+.SUFFIXES:
+.SUFFIXES: .c
+
+.c:
+ $(CC) $(CFLAGS) $< $(LIBS) -o $@
+
+
+##### TARGETS #####
+
+default: $(PROGS)
+
+clean:
+ rm -f $(PROGS)
+ rm -f *.o
+