Please check the GNU Autoconf Macro Archive for Updates
AC-Archive
Autoconf Macro Archive

ac-archive.sf.net: - Project CVS - Download
Macro Index
- AM Support
- C++ Support
- C Support
- Fortran Support
- Java Support
- Cross Compilation
- Installed Packages
- Miscellaneous
- LaTeX Support
- Uncategorized
- archive macros
- adl's macros
- bkorb's macros
- guidod's macros
- latex's macros
- other's macros
- rleigh's macros
- obsoleted macros
- released macros
- search index

Documentation
- Contribute!
- History
- acincludedir m4
- acinclude (tool)
- macro howto
- ax tricks
- maintainers
- License
- Topics

generated...
2007年08月05日

(C) 2007 guidod
Synopsis
AX_INSTALL_FILES
, 
Version

2005年01月14日

Author

Tom Howard <tomhoward@users.sf.net>

License

AllPermissive
Copying and distribution of this file, with or without modification, are permitted in any medium without royalty provided the copyright notice and this notice are preserved. Users of this software should generally follow the principles of the MIT License includings its disclaimer.

Category

cryp.to ac-archive's AM Support (released)

Documentation

Adds target for creating a install_files file, which contains the list of files that will be installed.

M4 Source Code
AC_DEFUN([AX_INSTALL_FILES],
[
AC_MSG_NOTICE([adding install_files support])
AC_ARG_VAR(GAWK, [gawk executable to use])
if test "x$GAWK" = "x"; then
 AC_CHECK_PROGS(GAWK,[gawk])
fi
if test "x$GAWK" != "x"; then
 AC_MSG_NOTICE([install_files support enabled])
 AX_HAVE_INSTALL_FILES=true
 AX_ADD_AM_MACRO([[
CLEANFILES += \\
\$(top_builddir)/install_files
\$(top_builddir)/install_files: do-mfstamp-recursive
	@if test \"\$(top_builddir)/mfstamp\" -nt \"\$(top_builddir)/install_files\"; then \\
	cd \$(top_builddir) &amp;&amp; STAGING=\"\$(PWD)/staging\"; \\
	\$(MAKE) \$(AM_MAKEFLAGS) DESTDIR=\"\$\$STAGING\" install; \\
	cd \"\$\$STAGING\" &amp;&amp; find "." ! -type d -print | \\
	$GAWK \' \\
	 /^\\.\\/usr\\/local\\/lib/ { \\
	 sub( /\\.\\/usr\\/local\\/lib/, \"%%{_libdir}\" ); } \\
	 /^\\.\\/usr\\/local\\/bin/ { \\
	 sub( /\\.\\/usr\\/local\\/bin/, \"%%{_bindir}\" ); } \\
	 /^\\.\\/usr\\/local\\/include/ { \\
		sub( /\\.\\/usr\\/local\\/include/, \"%%{_includedir}\" ); } \\
	 /^\\.\\/usr\\/local\\/share/ { \\
	 sub( /\\.\\/usr\\/local\\/share/, \"%%{_datadir}\" ); } \\
	 /^\\.\\/usr\\/local/ { \\
		sub( /\\.\\/usr\\/local/, \"%%{_prefix}\" ); } \\
	 /^\\./ { sub( /\\./, \"\" ); } \\
	 /./ { print; }\' &gt; ../install_files; \\
	rm -rf \"\$\$STAGING\"; \\
	else \\
	 echo \"\\\`\$(top_builddir)/install_files\' is up to date.\"; \\
	fi
]])
 AX_ADD_RECURSIVE_AM_MACRO([do-mfstamp],[[
\$(top_builddir)/mfstamp: do-mfstamp-recursive
do-mfstamp-am do-mfstamp: Makefile.in
	@echo \"timestamp for all Makefile.in files\" &gt; \$(top_builddir)/mfstamp
	@touch ${AX_DOLLAR}@
]])
else
 AX_HAVE_INSTALL_FILES=false;
 AC_MSG_WARN([install_files support disable... gawk not found])
fi
])# AX_INSTALL_FILES

AltStyle によって変換されたページ (->オリジナル) /