diff options
author | rsc <devnull@localhost> | 2006-05-22 14:56:13 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2006-05-22 14:56:13 +0000 |
commit | 4b65e43c54c2ca1394babed18cc02f4fffc22e16 (patch) | |
tree | 67a95b4e2d6861019fd9dd4e1253fb6a1e1ec20f /src/lib9/mkfile | |
parent | e17e1a71c2923717723f7038d6e123b6452e0b13 (diff) | |
download | plan9port-4b65e43c54c2ca1394babed18cc02f4fffc22e16.tar.gz plan9port-4b65e43c54c2ca1394babed18cc02f4fffc22e16.tar.bz2 plan9port-4b65e43c54c2ca1394babed18cc02f4fffc22e16.zip |
more tests
Diffstat (limited to 'src/lib9/mkfile')
-rw-r--r-- | src/lib9/mkfile | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/lib9/mkfile b/src/lib9/mkfile index a244dd3c..143ca7db 100644 --- a/src/lib9/mkfile +++ b/src/lib9/mkfile @@ -13,7 +13,9 @@ FMTOFILES=\ fmt.$O\ fmtfd.$O\ fmtfdflush.$O\ + fmtlocale.$O\ fmtlock2.$O\ + fmtnull.$O\ fmtprint.$O\ fmtquote.$O\ fmtrune.$O\ @@ -170,3 +172,22 @@ HFILES=\ %.$O: utf/%.c $CC $CFLAGS utf/$stem.c + +XLIB=$PLAN9/lib/$LIB + +testfmt: testfmt.$O $XLIB + $LD -o $target testfmt.$O + +testfltfmt: testfltfmt.$O $XLIB + $LD -o $target testfltfmt.$O + +testprint: testprint.$O $XLIB + $LD -o $target testprint.$O + +# debugging only - should go away (5/22/2006) +testgoogfmt: testfltfmt.$O googfmt.$O $XLIB + $LD -o $target testfltfmt.$O googfmt.$O + +testgoogprint: testprint.$O googfmt.$O $XLIB + $LD -o $target testprint.$O googfmt.$O + |