diff options
Diffstat (limited to 'progs/tests/Makefile')
-rw-r--r-- | progs/tests/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/progs/tests/Makefile b/progs/tests/Makefile index dbcb088244a..c1218b1ca9c 100644 --- a/progs/tests/Makefile +++ b/progs/tests/Makefile @@ -30,6 +30,7 @@ SOURCES = antialias.c \ fptest1.c \ fptexture.c \ getprocaddress.c \ + invert.c \ manytex.c \ multipal.c \ no_s3tc.c \ @@ -100,6 +101,12 @@ texrect: texrect.o readtex.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 $@ |