summaryrefslogtreecommitdiffstats
path: root/tests/Makefile
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2008-04-14 21:52:55 -0400
committerBrian Cully <github.20.shmit@spamgourmet.com>2008-04-14 21:52:55 -0400
commit6ba98a9f9f48e13738d9736cba9c45b5e94f42f2 (patch)
tree86d7c281bcdbf67eb53cee064aa905e740ec5ccf /tests/Makefile
downloadnastd-6ba98a9f9f48e13738d9736cba9c45b5e94f42f2.tar.gz
nastd-6ba98a9f9f48e13738d9736cba9c45b5e94f42f2.zip
Initial import
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile46
1 files changed, 46 insertions, 0 deletions
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