summaryrefslogtreecommitdiff
path: root/progs/fp/Makefile
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2005-10-20 21:40:23 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2005-10-20 21:40:23 +0000
commita90909e89234b95e44a2cd08181167ba234b5fac (patch)
treeacde20d993b76825ca98d07c07095fa99b4c8491 /progs/fp/Makefile
parentf344be793c7322bc43d17c85e90a875383d8ade8 (diff)
A bunch of little tests which exercise each ARB_fp instruction plus
a couple of other interesting cases.
Diffstat (limited to 'progs/fp/Makefile')
-rw-r--r--progs/fp/Makefile122
1 files changed, 122 insertions, 0 deletions
diff --git a/progs/fp/Makefile b/progs/fp/Makefile
new file mode 100644
index 0000000000..d6e0ef8b19
--- /dev/null
+++ b/progs/fp/Makefile
@@ -0,0 +1,122 @@
+# progs/tests/Makefile
+
+
+# These programs aren't intended to be included with the normal distro.
+# They're not too interesting but they're good for testing.
+
+TOP = ../..
+include $(TOP)/configs/current
+
+
+LIBS = $(APP_LIB_DEPS)
+
+SOURCES = \
+ tri-abs.c \
+ tri-add.c \
+ tri-cmp.c \
+ tri-cos.c \
+ tri-dp3.c \
+ tri-dp4.c \
+ tri-dph.c \
+ tri-dst.c \
+ tri-ex2.c \
+ tri-flr.c \
+ tri-frc.c \
+ tri-kil.c \
+ tri-lg2.c \
+ tri-lit.c \
+ tri-lrp.c \
+ tri-mad.c \
+ tri-max.c \
+ tri-min.c \
+ tri-mov.c \
+ tri-mul.c \
+ tri-pow.c \
+ tri-rcp.c \
+ tri-rsq.c \
+ tri-scs.c \
+ tri-sge.c \
+ tri-sge2.c \
+ tri-sin.c \
+ tri-slt.c \
+ tri-sub.c \
+ tri-swz.c \
+ tri-swz2.c \
+ tri-tex.c \
+ tri-xpd.c \
+ tri-position.c \
+
+NOTDONE=\
+ tri-txb.c \
+ tri-txp.c \
+ tri-depthwrite.c \
+ tri-fogoption.c
+
+
+PROGS = $(SOURCES:%.c=%)
+
+INCLUDES = -I. -I$(TOP)/include -I../samples
+
+UTIL_FILES = readtex.h readtex.c
+
+
+##### 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 #####
+
+default: $(UTIL_FILES) $(PROGS)
+
+clean:
+ rm -f $(PROGS)
+ rm -f *.o
+ rm -f getproclist.h
+
+
+# auto code generation
+getprocaddress: getprocaddress.c getproclist.h
+
+getproclist.h: $(TOP)/src/mesa/glapi/gl_API.xml 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 $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+
+invert: invert.o readtex.o
+ $(CC) invert.o readtex.o $(LIBS) -o $@
+
+invert.o: invert.c readtex.h
+ $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -o $@
+
+readtex.o: readtex.c
+ $(CC) -c $(INCLUDES) $(CFLAGS) $(DEFINES) $< -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 .
+
+
+
+
+# Emacs tags
+tags:
+ etags `find . -name \*.[ch]` `find ../include`