contrib linking in
This commit is contained in:
parent
1371444b31
commit
517cb7fd9d
2 changed files with 7 additions and 2 deletions
7
Makefile
7
Makefile
|
@ -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 bigcmds install biginstallcmds postinstall
|
world: etcfiles includes depend libraries cmds bigcmds contrib install biginstallcmds postinstall
|
||||||
|
|
||||||
includes:
|
includes:
|
||||||
cd include && $(MAKE) install
|
cd include && $(MAKE) install
|
||||||
|
@ -39,8 +39,12 @@ cmds:
|
||||||
bigcmds:
|
bigcmds:
|
||||||
cd commands && $(MAKE) bigall
|
cd commands && $(MAKE) bigall
|
||||||
|
|
||||||
|
contrib:
|
||||||
|
cd contrib && $(MAKE) all
|
||||||
|
|
||||||
install::
|
install::
|
||||||
cd commands && $(MAKE) $@
|
cd commands && $(MAKE) $@
|
||||||
|
cd contrib && $(MAKE) $@
|
||||||
|
|
||||||
biginstallcmds::
|
biginstallcmds::
|
||||||
cd commands && $(MAKE) biginstall
|
cd commands && $(MAKE) biginstall
|
||||||
|
@ -56,6 +60,7 @@ depend::
|
||||||
|
|
||||||
clean::
|
clean::
|
||||||
cd lib && $(MAKE) $@
|
cd lib && $(MAKE) $@
|
||||||
|
cd contrib && $(MAKE) $@
|
||||||
test ! -f commands/Makefile || { cd commands && $(MAKE) $@; }
|
test ! -f commands/Makefile || { cd commands && $(MAKE) $@; }
|
||||||
|
|
||||||
etcfiles::
|
etcfiles::
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
|
|
||||||
all install:
|
all install clean:
|
||||||
cd gnu && $(MAKE) $@
|
cd gnu && $(MAKE) $@
|
||||||
|
|
Loading…
Reference in a new issue