diff options
author | Keith Whitwell <[email protected]> | 2005-11-01 06:28:39 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2005-11-01 06:28:39 +0000 |
commit | d9f362a66733cf016a54bae0a97805223d930062 (patch) | |
tree | 28478ab0dd9e0c6ce5d11061ff9c4e0ae0ea407b /progs/vp/Makefile | |
parent | 05051037101dfa053798cf5ad91d1975fd1aa6a7 (diff) |
standalone tests for vp instructions
Diffstat (limited to 'progs/vp/Makefile')
-rw-r--r-- | progs/vp/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/progs/vp/Makefile b/progs/vp/Makefile new file mode 100644 index 00000000000..c3faeb5b602 --- /dev/null +++ b/progs/vp/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` |