diff options
author | Zack Rusin <[email protected]> | 2007-10-25 07:19:02 -0400 |
---|---|---|
committer | Zack Rusin <[email protected]> | 2007-10-25 09:04:41 -0400 |
commit | e842b5e5ba738cd214137cca95c6da64492f9f92 (patch) | |
tree | dddb448593e4152852d9a6437731d27e953f7e21 /progs/vpglsl/Makefile | |
parent | 7073ef96824242669735a8681519e1a0cee14309 (diff) |
Test some functionality of vp using GLSL that pure vp isn't testing.
Diffstat (limited to 'progs/vpglsl/Makefile')
-rw-r--r-- | progs/vpglsl/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/progs/vpglsl/Makefile b/progs/vpglsl/Makefile new file mode 100644 index 00000000000..c3faeb5b602 --- /dev/null +++ b/progs/vpglsl/Makefile @@ -0,0 +1,53 @@ +# 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 = \ + vp-tris.c + + + +PROGS = $(SOURCES:%.c=%) + +INCLUDES = -I. -I$(TOP)/include -I../samples + + +##### 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: $(PROGS) + +clean: + rm -f $(PROGS) + rm -f *.o + rm -f getproclist.h + + + + + +# Emacs tags +tags: + etags `find . -name \*.[ch]` `find ../include` |