]> Zhao Yanbai Git Server - minix.git/commitdiff
Connected coreutils
authorBen Gras <ben@minix3.org>
Thu, 8 Sep 2005 12:57:42 +0000 (12:57 +0000)
committerBen Gras <ben@minix3.org>
Thu, 8 Sep 2005 12:57:42 +0000 (12:57 +0000)
contrib/gnu/Makefile

index e272effacf117f9a6bca6392cee516bf362cb0bb..64e6a196b8a0d04c1fa70321204c230e7f74f99b 100755 (executable)
@@ -1,12 +1,20 @@
 
 EMACS=emacs-21.4
 LYNX=lynx2-8-5
+COREUTILS=gnu-coreutils-5.2.1
 
-all install::
-       cd $(LYNX) && sh MINIX/lynx.sh && bigmake $@
-       cd $(EMACS) && bigmake $@
+all::
+       cd $(LYNX) && /bin/sh makeme.sh
+       cd $(EMACS) && /bin/sh makeme.sh
+       cd $(COREUTILS) && /bin/sh makeme.sh
 
-all install clean::
-       if [ -f $(LYNX)/Makefile ] ; then cd $(LYNX) && bigmake $@; fi
-       cd $(EMACS) && bigmake $@
+install:: all
+       cd $(LYNX) && make install
+       cd $(EMACS) && make install
+       cd $(COREUTILS) && make install
+
+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