diff options
author | David Nusinow <[email protected]> | 2006-10-14 22:42:57 +0000 |
---|---|---|
committer | David Nusinow <[email protected]> | 2006-10-14 22:42:57 +0000 |
commit | 75733e42375e74d990afd2432e3072bc1586305b (patch) | |
tree | 794bc9de497c0befbe4b9b664e7a9fd7c3d6b416 /progs/vp/Makefile | |
parent | bc8084da742c20531bb2f935afad522e22381832 (diff) |
Commit diff of 6.5.1-0.2 so we've got a record of it here.mesa-6.5.1-0.2
Diffstat (limited to 'progs/vp/Makefile')
-rw-r--r-- | progs/vp/Makefile | 53 |
1 files changed, 0 insertions, 53 deletions
diff --git a/progs/vp/Makefile b/progs/vp/Makefile deleted file mode 100644 index c3faeb5b602..00000000000 --- a/progs/vp/Makefile +++ /dev/null @@ -1,53 +0,0 @@ -# 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` |