blob: 24f2b6bed845e1ec00cd61a9fc9eabb547152251 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
TOP=..
include $(TOP)/mk/gen.mk
# We need to boot msub and mkdependC (in that order), to be sure that
# make depend will succeed in all the other directories.
SUBDIRS = msub mkdependC fastmake lndir ltx mkdirhier runstdtest
boot ::
$(MAKE) -C msub all
$(MAKE) -C mkdependC all
$(MAKE) depend
$(MAKE) all
include $(TOP)/mk/subdir.mk
|