No more contrib/

This commit is contained in:
Ben Gras 2005-09-16 15:29:34 +00:00
parent b743d5b2fe
commit e1669c41cd

View file

@ -27,7 +27,7 @@ usage:
# 'make install' target. # 'make install' target.
# #
# etcfiles has to be done first. # etcfiles has to be done first.
world: includes depend libraries cmds bigcmds contribs install biginstallcmds postinstall world: includes depend libraries cmds bigcmds install biginstallcmds postinstall
includes: includes:
cd include && $(MAKE) install cd include && $(MAKE) install
@ -41,12 +41,8 @@ cmds:
bigcmds: bigcmds:
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) bigall; fi if [ -f commands/Makefile ] ; then cd commands && $(MAKE) bigall; fi
contribs:
if [ -f contrib/Makefile ]; then cd contrib && $(MAKE) all; fi
install:: install::
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) install; fi if [ -f commands/Makefile ] ; then cd commands && $(MAKE) install; fi
if [ -f contrib/Makefile ]; then cd contrib && $(MAKE) install; fi
biginstallcmds:: biginstallcmds::
if [ -f commands/Makefile ] ; then cd commands && $(MAKE) biginstall; fi if [ -f commands/Makefile ] ; then cd commands && $(MAKE) biginstall; fi
@ -62,9 +58,7 @@ depend::
clean:: clean::
cd lib && $(MAKE) $@ cd lib && $(MAKE) $@
if [ -f contrib/Makefile ]; then cd contrib && $(MAKE) $@; fi
test ! -f commands/Makefile || { cd commands && $(MAKE) $@; } test ! -f commands/Makefile || { cd commands && $(MAKE) $@; }
if [ -f contrib/Makefile ]; then cd contrib && $(MAKE) clean; fi
etcfiles:: etcfiles::
cd etc && $(MAKE) install cd etc && $(MAKE) install