1include ../../Make.inc
2
3#-----------------------------------------------------------------------
4
5LIBS = ../../spooles.a ${THREAD_LIBS} -lm
6
7DRIVERS = testSimple testGrid
8
9drivers : ${DRIVERS}
10
11clean :
12	- rm -f *.a *.o ${DRIVERS}
13
14testSimple : testSimple.o ../../spooles.a
15	${PURIFY} ${CC} $(PURIFY_GCC_VERSION) $@.o -o $@ ${LIBS}
16
17testGrid : testGrid.o ../../spooles.a
18	${PURIFY} ${CC} $(PURIFY_GCC_VERSION) $@.o -o $@ ${LIBS}
19