xref: /inferno-os/os/init/mkfile (revision 74a4d8c26dd3c1e9febcb717cfd6cb6512991a7a)
1<../../mkconfig
2
3OBJ=\
4	wminit.dis\
5
6all:V:	$OBJ
7install:V: all
8installall:V: all
9
10clean nuke:V:
11	rm -f *.dis *.sbl
12
13INCLD=\
14	-I$ROOT/module\
15
16%.dis:	%.b
17	limbo $INCLD -gw $stem.b
18
19%.s:	%.b
20	limbo $INCLD -w -G -S $stem.b
21
22ir%.dis: ../../appl/lib/ir%.b
23	limbo $INCLD -gw $prereq
24
25ir%.s: ../../appl/lib/ir%.b
26	limbo $INCLD -w -G -S $prereq
27
28