diff options
author | Russ Cox <rsc@swtch.com> | 2020-01-19 23:04:03 -0500 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2020-01-19 23:04:58 -0500 |
commit | f6c9f7b14c9dce53fff6020200b28c4e25621e87 (patch) | |
tree | 25f2f624a355464b424fabe6e99f88dc7c7fdaac | |
parent | 4698bde2367f971fed3924f2dee736e0dfe37bb9 (diff) | |
download | plan9port-f6c9f7b14c9dce53fff6020200b28c4e25621e87.tar.gz plan9port-f6c9f7b14c9dce53fff6020200b28c4e25621e87.tar.bz2 plan9port-f6c9f7b14c9dce53fff6020200b28c4e25621e87.zip |
libthread: fix test deps, cleanup in mkfile
-rw-r--r-- | src/libthread/mkfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libthread/mkfile b/src/libthread/mkfile index 45b78039..8a77a316 100644 --- a/src/libthread/mkfile +++ b/src/libthread/mkfile @@ -24,6 +24,8 @@ tspawn: test/tspawn.$O tspawnloop: test/tspawnloop.$O 9l -o $target test/$target.$O +tprimes tspawn tspawnloop: $PLAN9/lib/$LIB + %.$O: %.c $CC -o $target $CFLAGS -I. $stem.c @@ -50,4 +52,5 @@ test:V: tprimes tspawn echo tspawn should take 3 seconds, not 6 $PLAN9/bin/time ./tspawn sleep 3 >/dev/null -CLEANFILES=p1.txt p2.txt tp1.txt tp2.txt test/*.$O +CLEANFILES=p1.txt p2.txt tp1.txt tp2.txt test/*.$O tprimes tspawn + |