added fptest1, fptexture, texrect, etc

This commit is contained in:
Brian Paul
2003-03-14 15:43:46 +00:00
parent 5b8ed51501
commit add99d01ee

View File

@@ -12,6 +12,8 @@ PROGS = antialias \
cva \ cva \
dinoshade \ dinoshade \
fogcoord \ fogcoord \
fptest1 \
fptexture \
getprocaddress \ getprocaddress \
manytex \ manytex \
multipal \ multipal \
@@ -20,6 +22,7 @@ PROGS = antialias \
sharedtex \ sharedtex \
stencilwrap \ stencilwrap \
texline \ texline \
texrect \
texwrap \ texwrap \
vptest1 \ vptest1 \
vptest2 \ vptest2 \
@@ -36,6 +39,9 @@ PROGS = antialias \
.c: .c:
$(CC) $(CFLAGS) $< $(LIBS) -o $@ $(CC) $(CFLAGS) $< $(LIBS) -o $@
.c.o:
$(CC) -c -I. -I../include $(CFLAGS) $< -o $@
##### TARGETS ##### ##### TARGETS #####
@@ -52,3 +58,19 @@ getprocaddress: getprocaddress.c getproclist.h
getproclist.h: ../bin/APIspec getprocaddress.c getprocaddress.py getproclist.h: ../bin/APIspec getprocaddress.c getprocaddress.py
python getprocaddress.py > getproclist.h 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: ../util/readtex.h
ln -s ../util/readtex.h .
readtex.c: ../util/readtex.c
ln -s ../util/readtex.c .