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