Rename Makefile to Makefile.X11, add depend support
authorJon Smirl <jonsmirl@gmail.com>
Sat, 23 Aug 2003 01:34:56 +0000 (01:34 +0000)
committerJon Smirl <jonsmirl@gmail.com>
Sat, 23 Aug 2003 01:34:56 +0000 (01:34 +0000)
progs/tests/Makefile [deleted file]
progs/tests/Makefile.X11 [new file with mode: 0644]

diff --git a/progs/tests/Makefile b/progs/tests/Makefile
deleted file mode 100644 (file)
index be6c667..0000000
+++ /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 .
diff --git a/progs/tests/Makefile.X11 b/progs/tests/Makefile.X11
new file mode 100644 (file)
index 0000000..23b9309
--- /dev/null
@@ -0,0 +1,102 @@
+
+# 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 = ../..
+
+LIBS = $(APP_LIB_DEPS)
+
+SOURCES = antialias.c \
+       cva.c \
+       dinoshade.c \
+       fogcoord.c \
+       fptest1.c \
+       fptexture.c \
+       getprocaddress.c \
+       manytex.c \
+       multipal.c \
+       projtex.c \
+       seccolor.c \
+       sharedtex.c \
+       stencilwrap.c \
+       texline.c \
+       texrect.c \
+       texwrap.c \
+       vptest1.c \
+       vptest2.c \
+       vptest3.c \
+       vptorus.c \
+       vpwarpmesh.c \
+       yuvrect.c \
+       yuvsquare.c
+
+OBJECTS = $(SOURCES:.c=.o)
+
+PROGS = $(SOURCES:%.c=%)
+
+INCLUDES = \
+       -I. \
+       -I$(TOP)/include
+
+##### RULES #####
+
+.SUFFIXES:
+.SUFFIXES: .c
+
+.c:
+       $(CC) $(INCLUDES) $(CFLAGS) $< $(LIBS) -o $@
+
+.c.o:
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+
+.S.o:
+       $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES)  $< -o $@
+
+
+##### TARGETS #####
+
+targets:  $(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 .
+
+# Run 'make -f Makefile.X11 dep' to update the dependencies if you change
+# what's included by any source file.
+dep: $(SOURCES)
+       makedepend -fdepend -Y $(INCLUDES) \
+               $(SOURCES)
+
+
+# Emacs tags
+tags:
+       etags `find . -name \*.[ch]` `find ../include`
+
+
+include $(TOP)/Make-config
+
+include depend