Changeset 2112 for trunk/Makefile.am
- Timestamp:
- Nov 15, 2009, 5:59:00 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r2106 r2112 41 41 $(MAKE) install $(AM_MAKEFLAGS) INSTALL_HEADER="$(install_sh_DATA) -C" 42 42 43 if ENABLE_SVN_SUPPORT44 include build_support/svn_support.am45 else46 release:47 @echo "ERROR: target 'release' not activated."48 @echo " You need to run configure with '--enable-svn-support'."49 @exit 150 endif51 52 43 # This is a workaround to avoid a broken make when .m4 files are 53 44 # renamed or deleted. Something similar will be provided by Automake 1.11 54 45 $(am__aclocal_m4_deps): 46 47 ############################################################### 48 ## 49 ## Some targets useful for the maintainer 50 ## 51 MAINTAINER_CHECK_LOCAL = maintainer-check-local 52 RELEASE_LOCAL = ltversion-check 53 54 .PHONY: maintainer-check-local ltversion-check 55 56 ltversion-check: 57 @case `sed 200q $(srcdir)/m4/version.m4` in \ 58 *yat-$(VERSION)*$(YAT_LT_VERSION)*);; \ 59 *) \ 60 echo "version.m4: YAT_LT_VERSION not updated;" 1>&2;\ 61 echo " expected to find 'yat-$(VERSION) $(YAT_LT_VERSION)'" 1>&2;\ 62 exit 1;; \ 63 esac 64 65 maintainer-check-local: 66 mkdir _inst 67 @mcl_install=`cd _inst && pwd` \ 68 && $(MAKE) $(AM_MAKEFLAGS) prefix=$$mcl_install \ 69 && $(MAKE) $(AM_MAKEFLAGS) prefix=$$mcl_install install \ 70 && cd test && $(MAKE) $(AM_MAKEFLAGS) prefix=$$mcl_install yat_check_yat_test 71 72 include $(srcdir)/maintainer.am
Note: See TracChangeset
for help on using the changeset viewer.