1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
|
# -*- sh -*-
@SET_MAKE@
SHELL = /bin/sh
all:
cd src; $(MAKE) all
clean:
cd src; $(MAKE) clean
/bin/rm -f *~ \#*
distclean: clean
cd src; $(MAKE) distclean
/bin/rm -f config.log config.cache config.status Makefile
test:
cd src; $(MAKE) test
install:
cd src; $(MAKE) install
configure: autoconf/aclocal.m4 autoconf/configure.ac
cd autoconf && autoconf && mv ./configure ..
update: autoconf/config.sub autoconf/config.guess
autoconf/config.guess: /usr/share/misc/config.guess
/bin/cp -f /usr/share/misc/config.guess autoconf/config.guess
autoconf/config.sub: /usr/share/misc/config.sub
/bin/cp -f /usr/share/misc/config.sub autoconf/config.sub
|