diff options
Diffstat (limited to 'os/init/mkfile')
| -rw-r--r-- | os/init/mkfile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/os/init/mkfile b/os/init/mkfile new file mode 100644 index 00000000..e027809d --- /dev/null +++ b/os/init/mkfile @@ -0,0 +1,27 @@ +<../../mkconfig + +OBJ=\ + wminit.dis\ + +all:V: $OBJ +install:V: all +installall:V: all + +clean nuke:V: + rm -f *.dis *.sbl + +INCLD=\ + -I$ROOT/module\ + +%.dis: %.b + limbo $INCLD -gw $stem.b + +%.s: %.b + limbo $INCLD -w -G -S $stem.b + +ir%.dis: ../../appl/lib/ir%.b + limbo $INCLD -gw $prereq + +ir%.s: ../../appl/lib/ir%.b + limbo $INCLD -w -G -S $prereq + |
