1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# This file contains common Automake snippets that can be reused by several
# Makefile.am files with the line
# include $(top_srcdir)/common.am
edit = sed \
-e 's|@bindir[@]|$(bindir)|g' \
-e 's|@pkgdatadir[@]|$(pkgdatadir)|g' \
-e 's|@libdir[@]|$(libdir)|g' \
-e 's|@sysconfdir[@]|$(sysconfdir)|g' \
-e 's|@datarootdir[@]|$(datarootdir)|g' \
-e 's|@exec_prefix[@]|$(exec_prefix)|g' \
-e 's|@PACKAGE[@]|$(PACKAGE)|g' \
-e 's|@PACKAGE_NAME[@]|$(PACKAGE_NAME)|g' \
-e 's|@VERSION[@]|$(VERSION)|g' \
-e 's|@SHREXT[@]|$(SHREXT)|g' \
-e 's|@GLEXEC_CONFIG_FILE[@]|$(GLEXEC_CONFIG_FILE)|g' \
-e 's|@LCAS_DB_FILE[@]|$(LCAS_DB_FILE)|g' \
-e 's|@LCAS_MODULEDIR[@]|$(LCAS_MODULEDIR)|g' \
-e 's|@LCAS_MODULEDIR_SFX[@]|$(LCAS_MODULEDIR_SFX)|g' \
-e 's|@LCMAPS_DB_FILE[@]|$(LCMAPS_DB_FILE)|g' \
-e 's|@LCMAPS_MODULEDIR[@]|$(LCMAPS_MODULEDIR)|g' \
-e 's|@LCMAPS_MODULEDIR_SFX[@]|$(LCMAPS_MODULEDIR_SFX)|g' \
-e 's|@prefix[@]|$(prefix)|g'
|