minix/contrib/gnu/Makefile

21 lines
451 B
Makefile
Raw Normal View History

2005-09-01 16:38:35 +02:00
2005-09-01 17:26:12 +02:00
EMACS=emacs-21.4
LYNX=lynx2-8-5
2005-09-08 14:57:42 +02:00
COREUTILS=gnu-coreutils-5.2.1
2005-09-01 17:26:12 +02:00
2005-09-08 14:57:42 +02:00
all::
cd $(LYNX) && /bin/sh makeme.sh
cd $(EMACS) && /bin/sh makeme.sh
cd $(COREUTILS) && /bin/sh makeme.sh
2005-09-01 17:26:12 +02:00
2005-09-08 14:57:42 +02:00
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
2005-09-05 17:57:06 +02:00