Changeset 2015:5e51c9eb5e83 in lemon-0.x
- Timestamp:
- 03/24/06 21:27:42 (19 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@2650
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
bootstrap
r2012 r2015 1 1 #!/bin/bash 2 3 quiet=0 4 function quiet { [[ $quiet == 1 ]]; } 5 6 if [[ "$1" == "-q" ]]; then 7 quiet=1 8 shift 9 fi 2 10 3 11 prev= … … 68 76 fi 69 77 70 echo "Try using 'autoreconf -vi' instead of this."78 quiet || echo "Try using 'autoreconf -vi' instead of this." 71 79 72 set -x 73 $aclocal -I m4 \ 74 && libtoolize --force --copy \ 75 && $autoconf \ 76 && $autoheader \ 77 && $automake --add-missing --copy --gnu 80 set -e 81 quiet || set -x 82 83 $aclocal -I m4 84 (quiet && exec > /dev/null; libtoolize --force --copy) 85 $autoconf 86 $autoheader 87 $automake --add-missing --copy --gnu -
doc/Makefile.am
r1909 r2015 36 36 @$(NORMAL_INSTALL) 37 37 $(mkinstalldirs) $(DESTDIR)$(htmldir) 38 @dir=' $(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \38 @dir='html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \ 39 39 f="`echo $$p | sed -e 's|^.*/||'`"; \ 40 40 echo " $(INSTALL_DATA) $$p $(DESTDIR)$(htmldir)/$$f"; \ … … 44 44 uninstall-local: html/index.html 45 45 @$(NORMAL_UNINSTALL) 46 @dir=' $(<D)'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \46 @dir='html'; shopt -s nullglob; for p in $$dir/*.html $$dir/*.css $$dir/*.png $$dir/*.dot $$dir/*.php $$dir/*.idx $$dir/*.tag ; do \ 47 47 f="`echo $$p | sed -e 's|^.*/||'`"; \ 48 48 echo " rm -f $(DESTDIR)$(htmldir)/$$f"; \
Note: See TracChangeset
for help on using the changeset viewer.