Changeset 2739 for trunk/Makefile.am
- Timestamp:
- Jun 8, 2012, 12:22:47 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Makefile.am
r2604 r2739 28 28 ACLOCAL_AMFLAGS = -I m4 29 29 30 SUBDIRS = build_support m4 yat test doc 30 CLEANFILES = 31 DOXYGEN_INPUT = 32 EXTRA_DIST = 33 MOSTLYCLEANFILES = 31 34 32 .PHONY: doc doxygen_mk maintainer-check news-check svn-check svn-clean release 33 doc: doxygen_mk 34 @(cd doc; $(MAKE) $(AM_MAKEFLAGS) $@) 35 FORCE: 35 36 36 doxygen_mk:; @(cd yat; $(MAKE) $(AM_MAKEFLAGS) $@) 37 include build_support/Makefile.am 38 ## yat/Makefile.am contains DOXYGEN definitions, so needs to be 39 ## included before doc/Makefile 40 include yat/Makefile.am 41 include doc/Makefile.am 42 include m4/Makefile.am 43 include test/Makefile.am 37 44 38 lazycheck recheck: all 39 @(cd test && $(MAKE) $(AM_MAKEFLAGS) $@) 45 OLDFILES = 46 OLDFILES += $(srcdir)/build_support/Makefile.in 47 OLDFILES += build_support/Makefile 48 OLDFILES += $(srcdir)/doc/Makefile.in 49 OLDFILES += doc/Makefile 50 OLDFILES += $(srcdir)/m4/Makefile.in 51 OLDFILES += m4/Makefile 52 OLDFILES += $(srcdir)/test/Makefile.in 53 OLDFILES += test/Makefile 54 OLDFILES += $(srcdir)/yat/Makefile.in 55 OLDFILES += yat/Makefile 56 OLDFILES += $(srcdir)/classifier/Makefile.in 57 OLDFILES += classifier/Makefile 58 OLDFILES += $(srcdir)/normalizer/Makefile.in 59 OLDFILES += normalizer/Makefile 60 OLDFILES += $(srcdir)/omic/Makefile.in 61 OLDFILES += omic/Makefile 62 OLDFILES += $(srcdir)/random/Makefile.in 63 OLDFILES += random/Makefile 64 OLDFILES += $(srcdir)/regression/Makefile.in 65 OLDFILES += regression/Makefile 66 OLDFILES += $(srcdir)/statistics/Makefile.in 67 OLDFILES += statistics/Makefile 68 OLDFILES += $(srcdir)/utility/Makefile.in 69 OLDFILES += utility/Makefile 40 70 71 # temporary target (for automatic builds) 72 all-local: Makefile 73 rm -f $(OLDFILES) 74 75 clean-local: 76 rm -rf doc/$(DX_HTML_OUTPUT) test/yathello test/testSubDir 77 78 .PHONY: doc maintainer-check news-check svn-check svn-clean release 41 79 42 80 # like the normal install target, but does not update header files … … 46 84 47 85 ############################################################### 48 ## 86 ## 49 87 ## Some targets useful for the maintainer 50 88 ## … … 63 101 esac 64 102 65 maintainer-check-local: 103 maintainer-check-local: 66 104 mkdir _inst 67 105 @mcl_install=`cd _inst && pwd` \ … … 69 107 && $(MAKE) $(AM_MAKEFLAGS) prefix=$$mcl_install \ 70 108 && $(MAKE) $(AM_MAKEFLAGS) prefix=$$mcl_install install \ 71 && cd test &&$(MAKE) $(AM_MAKEFLAGS) prefix=$$mcl_install installcheck109 && $(MAKE) $(AM_MAKEFLAGS) prefix=$$mcl_install installcheck 72 110 73 111 # check that yat.pc is correctly generated with different combinations … … 78 116 yat-pc-check: 79 117 $(SHELL) $(srcdir)/configure $(DISTCHECK_CONFIGURE_FLAGS) \ 80 && cd build_support\81 && rm -f yat.pc && make\82 && $(GREP) '^ prefix=/usr/local'yat.pc \83 && $(GREP) '^ exec_prefix=$${prefix}'yat.pc \84 && $(GREP) '^ libdir=$${exec_prefix}/lib'yat.pc \85 && $(GREP) '^includedir=$${prefix}/include' yat.pc\86 && rm -f yat.pc && make prefix=foo\87 && $(GREP) '^ prefix=foo'yat.pc \88 && $(GREP) '^ exec_prefix=$${prefix}'yat.pc \89 && $(GREP) '^ libdir=$${exec_prefix}/lib'yat.pc \90 && $(GREP) '^includedir=$${prefix}/include' yat.pc\91 && rm -f yat.pc && make prefix=foo exec_prefix=bar\92 && $(GREP) '^ prefix=foo'yat.pc \93 && $(GREP) '^ exec_prefix=bar'yat.pc \94 && $(GREP) '^ libdir=$${exec_prefix}/lib'yat.pc \95 && $(GREP) '^includedir=$${prefix}/include'yat.pc \96 && rm -f yat.pc && make prefix=foo exec_prefix=bar libdir=baz includedir=quz\97 && $(GREP) '^prefix=foo' yat.pc \98 && $(GREP) '^exec_prefix=bar' yat.pc \99 && $(GREP) '^libdir=baz' yat.pc \100 && $(GREP) '^includedir=quz' yat.pc \118 && rm -f build_support/yat.pc && make \ 119 && $(GREP) '^prefix=/usr/local' build_support/yat.pc \ 120 && $(GREP) '^exec_prefix=$${prefix}' build_support/yat.pc \ 121 && $(GREP) '^libdir=$${exec_prefix}/lib' build_support/yat.pc \ 122 && $(GREP) '^includedir=$${prefix}/include' build_support/yat.pc \ 123 && rm -f build_support/yat.pc && make prefix=foo \ 124 && $(GREP) '^prefix=foo' build_support/yat.pc \ 125 && $(GREP) '^exec_prefix=$${prefix}' build_support/yat.pc \ 126 && $(GREP) '^libdir=$${exec_prefix}/lib' build_support/yat.pc \ 127 && $(GREP) '^includedir=$${prefix}/include' build_support/yat.pc \ 128 && rm -f build_support/yat.pc && make prefix=foo exec_prefix=bar \ 129 && $(GREP) '^prefix=foo' build_support/yat.pc \ 130 && $(GREP) '^exec_prefix=bar' build_support/yat.pc \ 131 && $(GREP) '^libdir=$${exec_prefix}/lib' build_support/yat.pc \ 132 && $(GREP) '^includedir=$${prefix}/include' build_support/yat.pc \ 133 && rm -f build_support/yat.pc \ 134 && make prefix=foo exec_prefix=bar libdir=baz includedir=quz \ 135 && $(GREP) '^prefix=foo' build_support/yat.pc \ 136 && $(GREP) '^exec_prefix=bar' build_support/yat.pc \ 137 && $(GREP) '^libdir=baz' build_support/yat.pc \ 138 && $(GREP) '^includedir=quz' build_support/yat.pc \ 101 139 && cd .. \ 102 140 && $(SHELL) $(srcdir)/configure $(DISTCHECK_CONFIGURE_FLAGS) exec_prefix=/t \ 103 141 && cd build_support \ 104 && rm -f yat.pc && make \ 105 && $(GREP) '^prefix=/usr/local' yat.pc \ 106 && $(GREP) '^exec_prefix=/t' yat.pc \ 107 && $(GREP) '^libdir=$${exec_prefix}/lib' yat.pc \ 108 && $(GREP) '^includedir=$${prefix}/include' yat.pc \ 109 && rm -f yat.pc && make prefix=foo \ 110 && $(GREP) '^prefix=foo' yat.pc \ 111 && $(GREP) '^exec_prefix=/t' yat.pc \ 112 && $(GREP) '^libdir=$${exec_prefix}/lib' yat.pc \ 113 && $(GREP) '^includedir=$${prefix}/include' yat.pc \ 114 && rm -f yat.pc && make prefix=foo exec_prefix=bar \ 115 && $(GREP) '^prefix=foo' yat.pc \ 116 && $(GREP) '^exec_prefix=bar' yat.pc \ 117 && $(GREP) '^libdir=$${exec_prefix}/lib' yat.pc \ 118 && $(GREP) '^includedir=$${prefix}/include' yat.pc \ 119 && rm -f yat.pc && make prefix=foo exec_prefix=bar libdir=baz includedir=quz\ 120 && $(GREP) '^prefix=foo' yat.pc \ 121 && $(GREP) '^exec_prefix=bar' yat.pc \ 122 && $(GREP) '^libdir=baz' yat.pc \ 123 && $(GREP) '^includedir=quz' yat.pc 142 && rm -f build_support/yat.pc && make \ 143 && $(GREP) '^prefix=/usr/local' build_support/yat.pc \ 144 && $(GREP) '^exec_prefix=/t' build_support/yat.pc \ 145 && $(GREP) '^libdir=$${exec_prefix}/lib' build_support/yat.pc \ 146 && $(GREP) '^includedir=$${prefix}/include' build_support/yat.pc \ 147 && rm -f build_support/yat.pc && make prefix=foo \ 148 && $(GREP) '^prefix=foo' build_support/yat.pc \ 149 && $(GREP) '^exec_prefix=/t' build_support/yat.pc \ 150 && $(GREP) '^libdir=$${exec_prefix}/lib' build_support/yat.pc \ 151 && $(GREP) '^includedir=$${prefix}/include' build_support/yat.pc \ 152 && rm -f build_support/yat.pc && make prefix=foo exec_prefix=bar \ 153 && $(GREP) '^prefix=foo' build_support/yat.pc \ 154 && $(GREP) '^exec_prefix=bar' build_support/yat.pc \ 155 && $(GREP) '^libdir=$${exec_prefix}/lib' build_support/yat.pc \ 156 && $(GREP) '^includedir=$${prefix}/include' build_support/yat.pc \ 157 && rm -f build_support/yat.pc \ 158 && make prefix=foo exec_prefix=bar libdir=baz includedir=quz \ 159 && $(GREP) '^prefix=foo' build_support/yat.pc \ 160 && $(GREP) '^exec_prefix=bar' build_support/yat.pc \ 161 && $(GREP) '^libdir=baz' build_support/yat.pc \ 162 && $(GREP) '^includedir=quz' build_support/yat.pc 124 163 125 164 SVN = svn
Note: See TracChangeset
for help on using the changeset viewer.