From 303eba31a40852be01f546141d852bcf9e091d4c Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Tue, 17 Jan 2006 11:25:29 +0000 Subject: [PATCH] Removed bits from Makefile that are now in 'bigports' --- commands/Makefile | 46 +++++++++++++++++++--------------------------- 1 file changed, 19 insertions(+), 27 deletions(-) diff --git a/commands/Makefile b/commands/Makefile index 268693148..2f1c37768 100755 --- a/commands/Makefile +++ b/commands/Makefile @@ -24,8 +24,6 @@ usage: @echo " make biginstall # Install all big commands" >&2 @echo " make small # Install all small commands" >&2 @echo " make smallinstall # Install all small commands" >&2 - @echo " make ack # Make ack" >&2 - @echo " make ackinstall # Install ack" >&2 @echo " " @echo "big compiles the commands the require large compiler sizes." @echo "small compiles the rest. all compiles all." @@ -47,35 +45,35 @@ smallinstall:: small big: cd $(FLEX) && /bin/sh makeme.sh cd $(BZIP2) && /bin/sh makeme.sh - cd $(KERMIT) && /bin/sh makeme.sh - cd $(LYNX) && /bin/sh makeme.sh - cd $(COREUTILS) && /bin/sh makeme.sh - cd $(PERL) && /bin/sh makeme.sh - cd $(EMACS) && /bin/sh makeme.sh - cd $(PYTHON) && /bin/sh makeme.sh - cd $(VIM) && /bin/sh makeme.sh + #cd $(LYNX) && /bin/sh makeme.sh + #cd $(COREUTILS) && /bin/sh makeme.sh + #cd $(PERL) && /bin/sh makeme.sh + #cd $(EMACS) && /bin/sh makeme.sh + #cd $(PYTHON) && /bin/sh makeme.sh + #cd $(VIM) && /bin/sh makeme.sh + #cd $(KERMIT) && /bin/sh makeme.sh biginstall: big cd $(FLEX) && make install - cd $(PYTHON) && make install + #cd $(PYTHON) && make install cd $(BZIP2) && make install - cd $(KERMIT) && make install - cd $(LYNX) && make install - cd $(EMACS) && make install - cd $(COREUTILS) && make install - cd $(PERL) && make install - cd $(VIM) && make install + #cd $(KERMIT) && make install + #cd $(LYNX) && make install + #cd $(EMACS) && make install + #cd $(COREUTILS) && make install + #cd $(PERL) && make install + #cd $(VIM) && make install clean:: if [ -f $(FLEX)/Makefile ] ; then cd $(FLEX) && make $@; fi if [ -f $(GZIP)/Makefile ] ; then cd $(GZIP) && make $@; fi - if [ -f $(PYTHON)/Makefile ] ; then cd $(PYTHON) && make $@; fi + #if [ -f $(PYTHON)/Makefile ] ; then cd $(PYTHON) && make $@; fi cd $(BZIP2) && make clean - cd $(KERMIT) && make clean + #cd $(KERMIT) && make clean if [ -f $(NVIWORK)/Makefile ]; then cd $(NVIWORK) && make clean; fi - if [ -f $(LYNX)/Makefile ] ; then cd $(LYNX) && make clean; fi - if [ -f $(EMACS)/Makefile ] ; then cd $(EMACS) && make clean; fi - cd $(COREUTILS) && make clean + #if [ -f $(LYNX)/Makefile ] ; then cd $(LYNX) && make clean; fi + #if [ -f $(EMACS)/Makefile ] ; then cd $(EMACS) && make clean; fi + #cd $(COREUTILS) && make clean for p in $(SMALLPROGRAMS); do ( cd $$p && make clean ); done small:: @@ -84,9 +82,3 @@ small:: smallinstall:: for p in $(SMALLPROGRAMS); do ( cd $$p && make install ); done -ack: - cd ackpack && make - -ackinstall: - cd ackpack && make install - -- 2.44.0