Commit f9b1c230 f9b1c23000ca85c88f6ec526eed64176b5b71fee by Jeff Bailey

2002-10-30 Jeff Bailey <jbailey@gnu.org>

        * mh/Makefile.am: Use AM_YFLAGS instead of YFLAGS

        * libmu_scm/Makefile.am: Use AM_CPPFLAGS instead of CPPFLAGS

        * autogen.sh: Redo using 'autoreconf'.  This is now the right
        tool to use for generating the build environment.
1 parent 65cccbd4
1 2002-10-30 Jeff Bailey <jbailey@gnu.org>
2
3 * mh/Makefile.am: Use AM_YFLAGS instead of YFLAGS
4
5 * libmu_scm/Makefile.am: Use AM_CPPFLAGS instead of CPPFLAGS
6
7 * autogen.sh: Redo using 'autoreconf'. This is now the right
8 tool to use for generating the build environment.
9
1 2002-10-29 Sergey Poznyakoff 10 2002-10-29 Sergey Poznyakoff
2 11
3 Following the proposition of Olivier Bornet 12 Following the proposition of Olivier Bornet
......
1 #!/bin/sh 1 #!/bin/sh
2 2
3 aclocal -I m4 3 autoreconf -f -i -s
4 libtoolize --automake
5 autoheader
6 automake -a
7 autoconf
......
...@@ -34,7 +34,7 @@ BUILT_SOURCES=@GUILE_BUILT_SOURCES@ ...@@ -34,7 +34,7 @@ BUILT_SOURCES=@GUILE_BUILT_SOURCES@
34 DISTCLEANFILES=$(DOT_X_FILES) $(DOT_DOC_FILES) @GUILE_PKGDATA@ 34 DISTCLEANFILES=$(DOT_X_FILES) $(DOT_DOC_FILES) @GUILE_PKGDATA@
35 CLEANFILES=*.inc 35 CLEANFILES=*.inc
36 36
37 CPPFLAGS=-DDATADIR=\"$(pkgdatadir)\" 37 AM_CPPFLAGS=-DDATADIR=\"$(pkgdatadir)\"
38 ETAGS_ARGS = --regex='/SCM_\(GLOBAL_\)?\(G?PROC\|G?PROC1\|SYMBOL\|VCELL\|CONST_LONG\).*\"\([^\"]\)*\"/\3/' \ 38 ETAGS_ARGS = --regex='/SCM_\(GLOBAL_\)?\(G?PROC\|G?PROC1\|SYMBOL\|VCELL\|CONST_LONG\).*\"\([^\"]\)*\"/\3/' \
39 --regex='/[ \t]*SCM_[G]?DEFINE1?[ \t]*(\([^,]*\),[^,]*/\1/' 39 --regex='/[ \t]*SCM_[G]?DEFINE1?[ \t]*(\([^,]*\),[^,]*/\1/'
40 40
......
...@@ -36,7 +36,7 @@ rmf_LDADD = $(mh_LIBS) ...@@ -36,7 +36,7 @@ rmf_LDADD = $(mh_LIBS)
36 fmtcheck_LDADD = $(mh_LIBS) 36 fmtcheck_LDADD = $(mh_LIBS)
37 repl_LDADD = $(mh_LIBS) 37 repl_LDADD = $(mh_LIBS)
38 38
39 YFLAGS=-vt 39 AM_YFLAGS=-vt
40 40
41 install-exec-hook: 41 install-exec-hook:
42 -rm -f $(DESTDIR)$(bindir)/folders 42 -rm -f $(DESTDIR)$(bindir)/folders
......