diff options
| author | Charles.Forsyth <devnull@localhost> | 2006-12-22 20:52:35 +0000 |
|---|---|---|
| committer | Charles.Forsyth <devnull@localhost> | 2006-12-22 20:52:35 +0000 |
| commit | 46439007cf417cbd9ac8049bb4122c890097a0fa (patch) | |
| tree | 6fdb25e5f3a2b6d5657eb23b35774b631d4d97e4 /mkfiles/mksyslib-nt | |
| parent | 37da2899f40661e3e9631e497da8dc59b971cbd0 (diff) | |
20060303-partial
Diffstat (limited to 'mkfiles/mksyslib-nt')
| -rw-r--r-- | mkfiles/mksyslib-nt | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/mkfiles/mksyslib-nt b/mkfiles/mksyslib-nt new file mode 100644 index 00000000..4fedde60 --- /dev/null +++ b/mkfiles/mksyslib-nt @@ -0,0 +1,54 @@ +# +# Rules for updating a library with Nt rcsh +# +LIBDIR=$ROOT/$OBJDIR/lib +LIBRARY=$LIBDIR/$LIB +LIBOBJ=${OFILES:%=$LIBRARY(%)} + +default:V: all + +all install:V: $LIBRARY + +installall:V: + for (objtype in $CPUS) + mk $MKFLAGS install + +clean:V: clean-std + +nuke:V: nuke-std + +LIB1=${LIBRARY:%=$ARPREFIX%} + +$LIBRARY: $LIBOBJ $OFILES + $AR $ARFLAGS $LIB1 $OFILES + +$LIBRARY(%.$O):N: %.$O + +%.$O: $HFILES # don't combine with following %.$O rules + +%.$O: %.c + $CC $CFLAGS $stem.c + +%.$O: %.s + $AS $ASFLAGS $stem.s + +y.tab.h y.tab.c: $YFILES + $YACC $YFLAGS $prereq + +clean-std:V: + rm -f *.$O y.tmp.* + rm -f y.tab.? y.output y.error *.pdb *.pch + +nuke-std:V: clean-std + rm -f y.tab.? y.output y.error *.pdb *.pch + rm -f $LIBRARY + +#nuke-std:V: clean-std $LIBDIR/fake.lib +# rm -f y.tab.? y.output y.error *.pdb *.pch +# cp $LIBDIR/fake.lib $LIBRARY +# +#$LIBDIR/fake.lib: +# echo 'void axzzzzzzz(void) { return; }' > fooxx.c +# $CC $CFLAGS fooxx.c +# $AR $ARFLAGS -out:$target fooxx.obj +# rm -f fooxx.* |
