comparison gnulib-tool @ 7644:3c0ece164bab

Replace build-aux/ also in the Makefile snippet.
author Bruno Haible <bruno@clisp.org>
date Mon, 13 Nov 2006 12:35:41 +0000
parents d67f9dc6019d
children 33bd42644eec
comparison
equal deleted inserted replaced
7643:d67f9dc6019d 7644:3c0ece164bab
20 # This program is meant for authors or maintainers which want to import 20 # This program is meant for authors or maintainers which want to import
21 # modules from gnulib into their packages. 21 # modules from gnulib into their packages.
22 22
23 progname=$0 23 progname=$0
24 package=gnulib 24 package=gnulib
25 cvsdatestamp='$Date: 2006-11-13 12:35:01 $' 25 cvsdatestamp='$Date: 2006-11-13 12:35:41 $'
26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` 26 last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
27 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` 27 version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
28 nl=' 28 nl='
29 ' 29 '
30 30
1156 # emits the contents of library makefile to standard output. 1156 # emits the contents of library makefile to standard output.
1157 # Input: 1157 # Input:
1158 # - local_gnulib_dir from --local-dir 1158 # - local_gnulib_dir from --local-dir
1159 # - modules list of modules, including dependencies 1159 # - modules list of modules, including dependencies
1160 # - libname library name 1160 # - libname library name
1161 # - auxdir directory relative to destdir where to place build aux files
1161 # - makefile_name from --makefile-name 1162 # - makefile_name from --makefile-name
1162 # - libtool true if libtool will be used, false or blank otherwise 1163 # - libtool true if libtool will be used, false or blank otherwise
1163 # - macro_prefix prefix of gl_LIBOBJS macros to use 1164 # - macro_prefix prefix of gl_LIBOBJS macros to use
1164 # - actioncmd (optional) command that will reproduce this invocation 1165 # - actioncmd (optional) command that will reproduce this invocation
1165 # Output: 1166 # Output:
1272 echo "MAINTAINERCLEANFILES =" 1273 echo "MAINTAINERCLEANFILES ="
1273 echo 1274 echo
1274 echo "AM_CPPFLAGS =" 1275 echo "AM_CPPFLAGS ="
1275 fi 1276 fi
1276 echo 1277 echo
1277 cat allsnippets.tmp 1278 cat allsnippets.tmp \
1279 | sed -e 's|\$(top_srcdir)/build-aux/|$(top_srcdir)/'"$auxdir"'/|g'
1278 echo 1280 echo
1279 echo "mostlyclean-local: mostlyclean-generic" 1281 echo "mostlyclean-local: mostlyclean-generic"
1280 echo " @for dir in '' \$(MOSTLYCLEANDIRS); do \\" 1282 echo " @for dir in '' \$(MOSTLYCLEANDIRS); do \\"
1281 echo " if test -n \"\$\$dir\" && test -d \$\$dir; then \\" 1283 echo " if test -n \"\$\$dir\" && test -d \$\$dir; then \\"
1282 echo " echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\" 1284 echo " echo \"rmdir \$\$dir\"; rmdir \$\$dir; \\"