Changeset 546f7ff in git


Ignore:
Timestamp:
Sep 19, 2011, 5:20:05 PM (13 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', '98550b669234b32be762076c32b3be2c35188ac4')
Children:
5ff885162d38fce9782dd8498f084c9021c200a6
Parents:
740ea01fdb4b179fbe693b978cb630d6caf78c50
git-author:
Martin Lee <martinlee84@web.de>2011-09-19 17:20:05+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 16:12:52+01:00
Message:
added tests to factory
Location:
factory
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • factory/Makefile.am

    r740ea01 r546f7ff  
    320320
    321321cf_gmp.h: cplusplus.h
     322
     323#ftmpl_inst.o:  ftmpl_inst.cc factoryconf.h factory.h \
     324#               $(addprefix templates/,$(templatesrc)) \
     325#               $(addprefix templates/,$(templateincl))
     326#               $(CXX) -c $< $(libfactory_a_CXXFLAGS)  $(INCLUDES) -o $@
     327
     328####################################################
     329## Test program
     330##
     331TESTS = test-g test-r
     332check_PROGRAMS = $(TESTS)
     333
     334TESTSSOURCES = test.cc
     335
     336test_g: libfactory_g.a
     337
     338test_g_SOURCES = $(TESTSSOURCES)
     339test_g_CFLAGS = -g -Wextra -Wall -pedantic -Wno-long-long -fomit-frame-pointer --no-rtti #ftmpl_inst.o
     340test_g_LDADD = -L${builddir} -lfactory_g $(GMP_LIBS) $(NTL_LIBS)
     341
     342test_r: libfactory.a
     343
     344test_r_SOURCES = $(TESTSSOURCES)
     345test_r_CFLAGS = -O3 -fomit-frame-pointer --no-rtti #ftmpl_inst.o
     346test_r_LDADD = -L${builddir} -lfactory $(GMP_LIBS) $(NTL_LIBS)
Note: See TracChangeset for help on using the changeset viewer.