Gave sh more space for configure scripts; connected python to build;
fixed nit in python confused about select definitions
This commit is contained in:
parent
d31aba5ee3
commit
b1fe0aa86f
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
MAKE = exec make -$(MAKEFLAGS)
|
MAKE = exec make -$(MAKEFLAGS)
|
||||||
GZIP=gzip-1.2.4
|
GZIP=gzip-1.2.4
|
||||||
|
PYTHON=python-1.5.2
|
||||||
|
|
||||||
usage:
|
usage:
|
||||||
@echo "Usage: make all # Compile all commands" >&2
|
@echo "Usage: make all # Compile all commands" >&2
|
||||||
@ -11,9 +12,11 @@ usage:
|
|||||||
|
|
||||||
all install::
|
all install::
|
||||||
cd $(GZIP) && ./configure --prefix=/usr && make $@
|
cd $(GZIP) && ./configure --prefix=/usr && make $@
|
||||||
|
cd $(PYTHON) && ./configure --prefix=/usr/local && make $@
|
||||||
|
|
||||||
clean::
|
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::
|
all install clean::
|
||||||
cd `arch` && $(MAKE) $@
|
cd `arch` && $(MAKE) $@
|
||||||
|
@ -29,7 +29,7 @@ all: sh
|
|||||||
|
|
||||||
sh: $(OBJS)
|
sh: $(OBJS)
|
||||||
$(CC) $(CFLAGS) -o sh $(OBJS) $(LIBS)
|
$(CC) $(CFLAGS) -o sh $(OBJS) $(LIBS)
|
||||||
install -S 12kw sh
|
install -S 28kw sh
|
||||||
|
|
||||||
install: /usr/bin/ash /usr/bin/sh /bin/sh
|
install: /usr/bin/ash /usr/bin/sh /bin/sh
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user