|
From: Erik B. <do...@us...> - 2005-04-18 03:13:07
|
Update of /cvsroot/seq/showeq In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27607 Modified Files: Tag: pre_5_0_beta Makefile.dist Log Message: Fix need to run Makefile.dist twice. Index: Makefile.dist =================================================================== RCS file: /cvsroot/seq/showeq/Makefile.dist,v retrieving revision 1.3.16.2 retrieving revision 1.3.16.3 diff -u -d -r1.3.16.2 -r1.3.16.3 --- Makefile.dist 7 Nov 2004 23:09:53 -0000 1.3.16.2 +++ Makefile.dist 18 Apr 2005 03:12:56 -0000 1.3.16.3 @@ -90,10 +90,10 @@ automake: install-sh missing Makefile.in src/Makefile.in conf/Makefile.in -install-sh missing Makefile.in: config.h.in aclocal.m4 Makefile.dist +install-sh missing Makefile.in src/Makefile.in conf/Makefile.in: config.h.in aclocal.m4 Makefile.dist @echo -n "Generating Makefile.in from Makefile.am....................." @echo -e "\n*!* automake ... *!*" >> Makefile.dist.dbg - @$(AUTOMAKE) $(AUTOMAKE_ARGS) Makefile >> Makefile.dist.dbg 2>&1 + @$(AUTOMAKE) $(AUTOMAKE_ARGS) >> Makefile.dist.dbg 2>&1 @echo "!*! automake ... !*!" >> Makefile.dist.dbg @if [ -s "$@" ]; then { \ echo " done!"; \ @@ -103,18 +103,6 @@ exit -1; \ } fi -%.in: %.am aclocal Makefile.dist - @echo -n "Generating $< from $@ ....................." - @echo -e "\n*!* automake ... *!*" >> Makefile.dist.dbg - @$(AUTOMAKE) $(AUTOMAKE_ARGS) $* >> Makefile.dist.dbg 2>&1 - @echo "!*! automake ... !*!" >> Makefile.dist.dbg - @if [ -s "$@" ]; then { \ - echo " done!"; \ - } else { \ - echo " failed! ";\ - echo "See Makefile.dist.dbg for details"; \ - exit -1; \ - } fi autoheader: config.h.in |