Changeset 6b61be in git


Ignore:
Timestamp:
May 23, 2011, 6:12:38 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
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
Message:
ADD: optional building of factory (only with --enable-factory)
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Makefile.am

    rc44985 r6b61be  
    11ALLOC=omalloc
    22
    3 PACKAGES=$(ALLOC) factory libpolys
     3
     4if ENABLE_FACTORY
     5  USE_FACTORY = factory
     6else
     7  USE_FACTORY =
     8endif
     9 
     10PACKAGES=$(ALLOC) $(USE_FACTORY) libpolys
    411
    512SUBDIRS=$(PACKAGES)
  • configure.ac

    rc44985 r6b61be  
    55AC_PROG_CC
    66AC_PROG_CXX
     7SING_CHECK_FACTORY
     8
    79AC_CONFIG_FILES([Makefile])
    8 AC_CONFIG_SUBDIRS([omalloc factory libpolys])
     10
     11
     12AC_CONFIG_SUBDIRS(omalloc)
     13if test x$ENABLE_FACTORY = xyes; then
     14  AC_CONFIG_SUBDIRS(factory)
     15fi
     16AC_CONFIG_SUBDIRS(libpolys)
     17
    918AC_OUTPUT
Note: See TracChangeset for help on using the changeset viewer.