Changeset 6b61be in git
- Timestamp:
- May 23, 2011, 6:12:38 PM (12 years ago)
- Branches:
- (u'spielwiese', '8d54773d6c9e2f1d2593a28bc68b7eeab54ed529')
- Children:
- 8872efbfb71195aa3318ef6e00f76ced9444e6f0
- Parents:
- c44985a8f5ca67af1ce38a5a3fce467f6da4cc00
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-05-23 18:12:38+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:47+01:00
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
rc44985 r6b61be 1 1 ALLOC=omalloc 2 2 3 PACKAGES=$(ALLOC) factory libpolys 3 4 if ENABLE_FACTORY 5 USE_FACTORY = factory 6 else 7 USE_FACTORY = 8 endif 9 10 PACKAGES=$(ALLOC) $(USE_FACTORY) libpolys 4 11 5 12 SUBDIRS=$(PACKAGES) -
configure.ac
rc44985 r6b61be 5 5 AC_PROG_CC 6 6 AC_PROG_CXX 7 SING_CHECK_FACTORY 8 7 9 AC_CONFIG_FILES([Makefile]) 8 AC_CONFIG_SUBDIRS([omalloc factory libpolys]) 10 11 12 AC_CONFIG_SUBDIRS(omalloc) 13 if test x$ENABLE_FACTORY = xyes; then 14 AC_CONFIG_SUBDIRS(factory) 15 fi 16 AC_CONFIG_SUBDIRS(libpolys) 17 9 18 AC_OUTPUT
Note: See TracChangeset
for help on using the changeset viewer.