--- makefile.in 2003-09-10 11:05:48.000000000 -0300 +++ ./makefile.in 2010-05-10 00:29:10.000000000 -0300 @@ -40,7 +40,7 @@ MESCHACH_HDRS = err.h machine.h matrix.h matrix2.h meminfo.h sparse.h sparse2.h src/gstat: @LIB_MESCHACH@ - (cd src; make) + (cd src; ${MAKE}) configure: configure.in autoconf @@ -58,7 +58,7 @@ fi; test: - (cd cmd; make) + (cd cmd; ${MAKE}) lib/libmeschach.a: lib meschach/meschach.a cp meschach/meschach.a lib/libmeschach.a @@ -66,7 +66,7 @@ meschach/meschach.a: (cd meschach; \ ./configure @WITH_SPARSE_OPT@ --cache-file=../config.cache; \ - make @MESCHACH_TARGET@; \ + ${MAKE} @MESCHACH_TARGET@; \ cp -p $(MESCHACH_HDRS) ../include) $(DEST):; mkdir $(DEST) @@ -76,7 +76,7 @@ gd: lib/libgd.a lib/libgd.a: lib gd1.2 - (cd gd1.2; make libgd.a) + (cd gd1.2; ${MAKE} libgd.a) mv gd1.2/libgd.a lib cp gd1.2/gd*.h include @@ -85,28 +85,28 @@ @echo "and install it in ./gd1.2" maputils: - (cd src; make maputils; mv map ../bin) + (cd src; ${MAKE} maputils; mv map ../bin) byteorder: (cd cmd; cc -o byteord byteord.c; byteord; rm -f byteord) clean: - (cd meschach; make clean; rm -f *\.a) - (cd cmd; make clean) - (cd src; make clean) - (cd S; make clean) + (cd meschach; ${MAKE} clean; rm -f *\.a) + (cd cmd; ${MAKE} clean) + (cd src; ${MAKE} clean) + (cd S; ${MAKE} clean) veryclean: - make clean + ${MAKE} clean rm -f makefile config.status meschach/config.status config.log config.cache (cd meschach; rm -f config.cache config.log meschach.a macheps maxint) rm -f ./src/makefile ./src/config.h ./lib/*\.a ./bin/* (cd include; rm -f $(MESCHACH_HDRS)) manual: - (cd tex; make gstat.ps) + (cd tex; ${MAKE} gstat.ps) -demo:; (cd cmd; make mask; make) +demo:; (cd cmd; ${MAKE} mask; ${MAKE}) dist: configure tar zcf gstat.tgz `cat ./FILES ./DIV ./MAIL` `find ./rtest` @@ -114,11 +114,11 @@ snapshot: configure rm -f gstat-$(VERSION).tar.gz - make ftp-src + ${MAKE} ftp-src scp gstat-$(VERSION).tar.gz gstat@www.gstat.org:data/bin version: - (cd src; make version) + (cd src; ${MAKE} version) www:; tar zcf html.tgz html @@ -130,10 +130,10 @@ flop:; mcopy gstat.tgz a: ftp: - make ftp-src ftp-linux ftp-manual + ${MAKE} ftp-src ftp-linux ftp-manual gstatlib: - make gstat-lib + ${MAKE} gstat-lib gstat-lib: meschach/meschach.a if [ -f ./libgstat ];\ @@ -141,9 +141,9 @@ else ./configure --with-csf --without-gd --without-gsl --without-netcdf \ --without-curses --with-debug --with-libgstat;\ fi - (cd src; make gstat-lib) - (cd qt; make gstat-lib) - (cd meschach; make gstat-lib) + (cd src; ${MAKE} gstat-lib) + (cd qt; ${MAKE} gstat-lib) + (cd meschach; ${MAKE} gstat-lib) tar zcvf libgstat.tgz ./lib/libmeschach.a ./lib/libgstat.a ./gstatinc touch ./libgstat @@ -165,7 +165,7 @@ rm -r linux ftp-manual: - make manual + ${MAKE} manual gzip -f9 tex/gstat.ps mv tex/gstat.ps.gz gstat-$(VERSION).man.ps.gz