From 6ba98a9f9f48e13738d9736cba9c45b5e94f42f2 Mon Sep 17 00:00:00 2001 From: Brian Cully Date: Mon, 14 Apr 2008 21:52:55 -0400 Subject: Initial import --- tests/Makefile | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 tests/Makefile (limited to 'tests/Makefile') diff --git a/tests/Makefile b/tests/Makefile new file mode 100644 index 0000000..8c2cd69 --- /dev/null +++ b/tests/Makefile @@ -0,0 +1,46 @@ +# $Id: Makefile,v 1.15 2000/12/27 06:51:51 shmit Exp $ + +LIBASS= ../client/libnast.a + +tclients: getnast statnast stressnast randnast mtstressnast updnast \ + killnast + +GETOBJS= getnast.o +getnast: ${GETOBJS} + ${PURIFY} ${CC} -o $@ ${GETOBJS} ${LIBASS} ${LIBS} + +STATOBJS= statnast.o +statnast: ${STATOBJS} + ${PURIFY} ${CC} -o $@ ${STATOBJS} ${LIBASS} ${LIBS} + +STRESSOBJS= stressnast.o +stressnast: ${STRESSOBJS} + ${PURIFY} ${CC} -o $@ ${STRESSOBJS} ${LIBASS} ${LIBS} + +RANDOBJS= randnast.o +randnast: ${RANDOBJS} + ${PURIFY} ${CC} -o $@ ${RANDOBJS} ${LIBASS} ${LIBS} + +MTSTRESSOBJS= mtstressnast.o +mtstressnast: ${MTSTRESSOBJS} + ${PURIFY} ${CC} -o $@ ${MTSTRESSOBJS} ${LIBASS} ${LIBS} + +UPDOBJS= updnast.o +updnast: ${UPDOBJS} + ${PURIFY} ${CC} -o $@ ${UPDOBJS} ${LIBASS} ${LIBS} + +KILLOBJS= killnast.o +killnast: ${KILLOBJS} + ${PURIFY} ${CC} -o $@ ${KILLOBJS} ${LIBASS} ${LIBS} + +# +# Dependencies +# +getnast.o: ../include/nastd.h +statnast.o: ../include/nastd.h +stressnast.o: ../include/nastd.h +randnast.o: ../include/nastd.h +mtstressnast.o: ../include/nastd.h + +MKDIR= ../Makefiles +include ${MKDIR}/build -- cgit v1.2.3