Gave sh more space for configure scripts; connected python to build;

fixed nit in python confused about select definitions
This commit is contained in:
Ben Gras 2005-06-27 10:04:55 +00:00
parent d31aba5ee3
commit b1fe0aa86f
2 changed files with 5 additions and 2 deletions

View file

@ -2,6 +2,7 @@
MAKE = exec make -$(MAKEFLAGS)
GZIP=gzip-1.2.4
PYTHON=python-1.5.2
usage:
@echo "Usage: make all # Compile all commands" >&2
@ -11,9 +12,11 @@ usage:
all install::
cd $(GZIP) && ./configure --prefix=/usr && make $@
cd $(PYTHON) && ./configure --prefix=/usr/local && make $@
clean::
if [ -f $(GZIP)/Makefile] ; then cd $(GZIP) && make $@; fi
if [ -f $(GZIP)/Makefile ] ; then cd $(GZIP) && make $@; fi
if [ -f $(PYTHON)/Makefile ] ; then cd $(PYTHON) && make $@; fi
all install clean::
cd `arch` && $(MAKE) $@

View file

@ -29,7 +29,7 @@ all: sh
sh: $(OBJS)
$(CC) $(CFLAGS) -o sh $(OBJS) $(LIBS)
install -S 12kw sh
install -S 28kw sh
install: /usr/bin/ash /usr/bin/sh /bin/sh