summaryrefslogtreecommitdiff
path: root/progs
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2003-02-24 21:31:02 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2003-02-24 21:31:02 +0000
commitb8cdeaae3a30b6b487911771d350cb0a46386189 (patch)
tree72febd483bde665b9551b4638ae8840ce4a8efd9 /progs
parent4b930d3080bcaa69e841c919d73825e76669fbe2 (diff)
New file
Diffstat (limited to 'progs')
-rw-r--r--progs/samples/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/progs/samples/Makefile b/progs/samples/Makefile
new file mode 100644
index 00000000000..d97e781997b
--- /dev/null
+++ b/progs/samples/Makefile
@@ -0,0 +1,28 @@
+
+PROGS = prim \
+ star \
+ line \
+ point \
+ depth \
+ tri \
+ bitmap1 \
+ bitmap2
+
+
+##### RULES #####
+
+.SUFFIXES:
+.SUFFIXES: .c
+
+
+# make executable from .c file:
+.c: $(LIB_DEP)
+ gcc -I../include -g $< -L../lib -lglut -lGL -lm -o $@
+
+
+default: $(PROGS)
+
+
+clean:
+ -rm *.o *~
+