Changes for big/regular commands split, and postinstall
This commit is contained in:
parent
d39e1dd635
commit
2fbf4f9bdb
1 changed files with 10 additions and 2 deletions
12
Makefile
12
Makefile
|
@ -11,7 +11,7 @@ usage:
|
||||||
@echo " make world # Compile everything (libraries & commands)" >&2
|
@echo " make world # Compile everything (libraries & commands)" >&2
|
||||||
@echo " make includes # Install include files from src/" >&2
|
@echo " make includes # Install include files from src/" >&2
|
||||||
@echo " make libraries # Compile and install libraries" >&2
|
@echo " make libraries # Compile and install libraries" >&2
|
||||||
@echo " make cmds # Compile commands, but don't install" >&2
|
@echo " make cmds # Compile non-big commands, but don't install" >&2
|
||||||
@echo " make install # Compile and install commands" >&2
|
@echo " make install # Compile and install commands" >&2
|
||||||
@echo " make depend # Generate required .depend files" >&2
|
@echo " make depend # Generate required .depend files" >&2
|
||||||
@echo " make clean # Remove all compiler results" >&2
|
@echo " make clean # Remove all compiler results" >&2
|
||||||
|
@ -25,7 +25,7 @@ usage:
|
||||||
# for which it has to install /etc (for users and ownerships).
|
# for which it has to install /etc (for users and ownerships).
|
||||||
# etcfiles also creates a directory hierarchy in its
|
# etcfiles also creates a directory hierarchy in its
|
||||||
# 'make install' target.
|
# 'make install' target.
|
||||||
world: etcfiles includes depend libraries cmds install
|
world: etcfiles includes depend libraries cmds bigcmds install biginstallcmds postinstall
|
||||||
|
|
||||||
includes:
|
includes:
|
||||||
cd include && $(MAKE) install
|
cd include && $(MAKE) install
|
||||||
|
@ -36,9 +36,15 @@ libraries:
|
||||||
cmds:
|
cmds:
|
||||||
cd commands && $(MAKE) all
|
cd commands && $(MAKE) all
|
||||||
|
|
||||||
|
bigcmds:
|
||||||
|
cd commands && $(MAKE) bigall
|
||||||
|
|
||||||
install::
|
install::
|
||||||
cd commands && $(MAKE) $@
|
cd commands && $(MAKE) $@
|
||||||
|
|
||||||
|
biginstallcmds::
|
||||||
|
cd commands && $(MAKE) biginstall
|
||||||
|
|
||||||
depend::
|
depend::
|
||||||
mkdep kernel
|
mkdep kernel
|
||||||
mkdep servers
|
mkdep servers
|
||||||
|
@ -65,3 +71,5 @@ all install clean::
|
||||||
cd tools && $(MAKE) $@
|
cd tools && $(MAKE) $@
|
||||||
cd servers && $(MAKE) $@
|
cd servers && $(MAKE) $@
|
||||||
|
|
||||||
|
postinstall:
|
||||||
|
cd etc && $(MAKE) $@
|
||||||
|
|
Loading…
Reference in a new issue