Changeset 1440 for trunk/Makefile.am
- Timestamp:
- Dec 20, 2011, 5:50:31 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r1392 r1440 31 31 cd test && $(MAKE) $(AM_MAKEFLAGS) $@ 32 32 33 clean-local: 33 clean-local: 34 34 rm -rf svndigest *~ 35 35 … … 37 37 38 38 ## need to declare these variables here so they can be appended below 39 BUILT_SOURCES = 40 CLEANFILES = 41 CONFIG_STATUS_DEPENDENCIES = 39 BUILT_SOURCES = 40 CLEANFILES = 41 CONFIG_STATUS_DEPENDENCIES = 42 42 DISTCLEANFILES = 43 EXTRA_DIST = 43 EXTRA_DIST = 44 44 45 45 include $(top_srcdir)/svn_revision.am … … 91 91 svn revert -R build_support/macport 92 92 svn update build_support/macport 93 cp build_support/Portfile build_support/macport/Portfile 93 cp build_support/Portfile build_support/macport/Portfile 94 94 svn diff build_support/macport/Portfile > $@ 95 95 svn revert build_support/macport/Portfile … … 119 119 ^/branches/$(SVNDIGEST_MAJOR_VERSION).$(SVNDIGEST_MINOR_VERSION)-stable\ 120 120 ^/tags/$(VERSION) -m "tagging version $(VERSION)" 121 122 syntax-check: assert-header-without-use \ 123 assert-without-header \ 124 errno-header-without-use 125 126 assert-header-without-use: 127 @files=`grep -l "^#include *<cassert>" $(srcdir)/*/*.cc`;\ 128 grep -L "assert *(" $$files | grep $(srcdir) && \ 129 { echo "$@: in files listed above"; exit 1; } || :; 130 131 assert-without-header: 132 @files=`grep -l "assert *(" $(srcdir)/*/*.cc`;\ 133 grep -L "^#include *<cassert>" $$files | grep $(srcdir) && \ 134 { echo "$@: in files listed above"; exit 1; } || :; 135 136 errno-header-without-use: 137 files=`grep -l "^#include *<cerrno>" $(srcdir)/*/*.cc`;\ 138 test -n "$$files" || exit 0;\ 139 grep -LE "[^ \t\(=]errno" $$files | grep $(srcdir) && \ 140 { echo "$@: in files listed above"; exit 1; } || :; 141
Note: See TracChangeset
for help on using the changeset viewer.