| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 | 
							- # 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`
 
 
  |