From 832bba4a56c105e1ae3028342e273d730b117ae5 Mon Sep 17 00:00:00 2001 From: Ben Gras Date: Fri, 3 Feb 2006 15:52:12 +0000 Subject: [PATCH] Removed flex from base. --- commands/Makefile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/commands/Makefile b/commands/Makefile index 154009bce..d24262eae 100755 --- a/commands/Makefile +++ b/commands/Makefile @@ -1,7 +1,6 @@ # Makefile for commands. MAKE = exec make -$(MAKEFLAGS) -FLEX=flex-2.5.4 BZIP2=bzip2-1.0.3 NVI=nvi-1.79 NVIWORK=$(NVI)/minix @@ -33,15 +32,12 @@ smallinstall:: small cd $(NVI) && make install big: - cd $(FLEX) && /bin/sh build build cd $(BZIP2) && /bin/sh build build biginstall: big - cd $(FLEX) && make install cd $(BZIP2) && make install clean:: - if [ -f $(FLEX)/Makefile ] ; then cd $(FLEX) && make $@; fi cd $(BZIP2) && make clean if [ -f $(NVIWORK)/Makefile ]; then cd $(NVIWORK) && make clean; fi for p in $(SMALLPROGRAMS); do ( cd $$p && make clean ); done