summaryrefslogtreecommitdiff
path: root/progs/tests/Makefile
diff options
context:
space:
mode:
authorJon Smirl <jonsmirl@gmail.com>2003-08-23 01:34:56 +0000
committerJon Smirl <jonsmirl@gmail.com>2003-08-23 01:34:56 +0000
commit7c819439bac396a8f37e38a3acb137626946c6c5 (patch)
tree417e4f9fc81170022c6fbf0e63d7b704cf828bb8 /progs/tests/Makefile
parent52f246bd23c7dffa0589bf122955d8e6759fbdf1 (diff)
Rename Makefile to Makefile.X11, add depend support
Diffstat (limited to 'progs/tests/Makefile')
-rw-r--r--progs/tests/Makefile79
1 files changed, 0 insertions, 79 deletions
diff --git a/progs/tests/Makefile b/progs/tests/Makefile
deleted file mode 100644
index be6c667253..0000000000
--- a/progs/tests/Makefile
+++ /dev/null
@@ -1,79 +0,0 @@
-
-# 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.
-
-TOP = ../../
-
-CC = gcc
-CFLAGS = -g -I$(TOP)/include
-LIBS = -L$(TOP)/lib -lglut -lGLU -lGL -L/usr/X11R6/lib -lX11 -lXext -lm
-
-PROGS = antialias \
- cva \
- dinoshade \
- fogcoord \
- fptest1 \
- fptexture \
- getprocaddress \
- manytex \
- multipal \
- projtex \
- seccolor \
- sharedtex \
- stencilwrap \
- texline \
- texrect \
- texwrap \
- vptest1 \
- vptest2 \
- vptest3 \
- vptorus \
- vpwarpmesh \
- yuvrect \
- yuvsquare
-
-
-##### RULES #####
-
-.SUFFIXES:
-.SUFFIXES: .c
-
-.c:
- $(CC) $(CFLAGS) $< $(LIBS) -o $@
-
-.c.o:
- $(CC) -c -I. -I$(TOP)/include $(CFLAGS) $< -o $@
-
-
-##### TARGETS #####
-
-default: $(PROGS)
-
-clean:
- rm -f $(PROGS)
- rm -f *.o
-
-
-# auto code generation
-getprocaddress: getprocaddress.c getproclist.h
-
-getproclist.h: $(TOP)/src/mesa/glapi/APIspec getprocaddress.c getprocaddress.py
- python getprocaddress.py > getproclist.h
-
-
-texrect: texrect.o readtex.o
- $(CC) texrect.o readtex.o $(LIBS) -o $@
-
-texrect.o: texrect.c readtex.h
- $(CC) -c $(CFLAGS) $< -o $@
-
-readtex.o: readtex.c
- $(CC) -c $(CFLAGS) $< -o $@
-
-
-readtex.h: $(TOP)/progs/util/readtex.h
- ln -s $(TOP)/progs/util/readtex.h .
-
-readtex.c: $(TOP)/progs/util/readtex.c
- ln -s $(TOP)/progs/util/readtex.c .