diff options
author | rsc <devnull@localhost> | 2003-11-23 18:16:24 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2003-11-23 18:16:24 +0000 |
commit | 58611a1bbf601c7f38c76421d3a3ece58bc56efb (patch) | |
tree | 09d738fb08c599e0c3369952304453e699624157 /src/libfmt/mkfile | |
parent | 16a709666981e77a00a88a87b286b586ac77ffdc (diff) | |
download | plan9port-58611a1bbf601c7f38c76421d3a3ece58bc56efb.tar.gz plan9port-58611a1bbf601c7f38c76421d3a3ece58bc56efb.tar.bz2 plan9port-58611a1bbf601c7f38c76421d3a3ece58bc56efb.zip |
make -> mk
change %u from verb to flag.
Diffstat (limited to 'src/libfmt/mkfile')
-rw-r--r-- | src/libfmt/mkfile | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/libfmt/mkfile b/src/libfmt/mkfile new file mode 100644 index 00000000..4a03a338 --- /dev/null +++ b/src/libfmt/mkfile @@ -0,0 +1,57 @@ +PLAN9=../.. +<$PLAN9/src/mkhdr + +LIB=libfmt.a + +NUM=\ + charstod.$O\ + pow10.$O\ + +# Could add errfmt, but we want to pick it up from lib9 instead. +OFILES=\ + dofmt.$O\ + errfmt.$O\ + fltfmt.$O\ + fmt.$O\ + fmtfd.$O\ + fmtfdflush.$O\ + fmtlock.$O\ + fmtprint.$O\ + fmtquote.$O\ + fmtrune.$O\ + fmtstr.$O\ + fmtvprint.$O\ + fprint.$O\ + print.$O\ + runefmtstr.$O\ + runeseprint.$O\ + runesmprint.$O\ + runesnprint.$O\ + runesprint.$O\ + runevseprint.$O\ + runevsmprint.$O\ + runevsnprint.$O\ + seprint.$O\ + smprint.$O\ + snprint.$O\ + sprint.$O\ + strtod.$O\ + vfprint.$O\ + vseprint.$O\ + vsmprint.$O\ + vsnprint.$O\ + $NUM\ + $NAN\ + +HFILES=\ + fmtdef.h\ + $PLAN9/include/fmt.h\ + +<$PLAN9/src/mksyslib + +$NAN.$O: nan.h +strtod.$O: nan.h + +test: $LIB test.$O + $CC -o test test.$O $LIB -L$PLAN9/lib -lutf + |