1
0
mirror of https://github.com/ElvishArtisan/rivendell.git synced 2025-06-05 06:32:34 +02:00

2014-08-14 Fred Gleason <fredg@paravelsystems.com>

* Added 'AC_CONFIG_MACRO_DIR' invocation in 'configure.ac'.
	* Added a 'maintainer-clean-local' target in 'Makefile.am'.
This commit is contained in:
Fred Gleason 2014-08-14 13:35:11 -04:00
parent 6532b723b2
commit a22a193b40
4 changed files with 10 additions and 0 deletions

1
.gitignore vendored

@ -19,6 +19,7 @@ depcomp
install-sh install-sh
libtool libtool
ltmain.sh ltmain.sh
m4
make_slack make_slack
missing missing
Makefile.in Makefile.in

@ -14304,3 +14304,6 @@
* Amalgamated INCLUDE Makefile entries into AM_CPPFLAGS. * Amalgamated INCLUDE Makefile entries into AM_CPPFLAGS.
* Added '-Wno-portability' to the invocation of 'automake' in * Added '-Wno-portability' to the invocation of 'automake' in
'autogen.sh'. 'autogen.sh'.
2014-08-14 Fred Gleason <fredg@paravelsystems.com>
* Added 'AC_CONFIG_MACRO_DIR' invocation in 'configure.ac'.
* Added a 'maintainer-clean-local' target in 'Makefile.am'.

@ -62,6 +62,11 @@ SUBDIRS = icons\
utils\ utils\
web web
ACLOCAL_AMFLAGS = -I m4
maintainer-clean-local:
rm -rf m4
install-exec-local: install-exec-local:
./install-init.sh $(DESTDIR)$(prefix) ./install-init.sh $(DESTDIR)$(prefix)

@ -26,6 +26,7 @@ AC_INIT(rivendell,`cat PACKAGE_VERSION`,Fred Gleason <fredg@paravelsystems.com>)
AM_INIT_AUTOMAKE(rivendell,`cat PACKAGE_VERSION`) AM_INIT_AUTOMAKE(rivendell,`cat PACKAGE_VERSION`)
AC_SUBST(RPM_RELEASE,1) AC_SUBST(RPM_RELEASE,1)
m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])]) m4_ifdef([AM_SILENT_RULES],[AM_SILENT_RULES([yes])])
AC_CONFIG_MACRO_DIR([m4])
# #
# Some Fully Resolved Install Paths # Some Fully Resolved Install Paths