Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/Makefile.am

    rb9907c rf66195  
    1 SOURCE = atom.cpp bond.cpp boundary.cpp config.cpp          element.cpp ellipsoid.cpp helpers.cpp leastsquaremin.cpp linkedcell.cpp memoryusageobserver.cpp molecules.cpp moleculelist.cpp parser.cpp periodentafel.cpp                tesselation.cpp tesselationhelpers.cpp vector.cpp verbose.cpp
    2 HEADER = atom.hpp bond.hpp boundary.hpp config.hpp defs.hpp element.hpp ellipsoid.hpp helpers.hpp leastsquaremin.hpp linkedcell.hpp memoryusageobserver.hpp molecules.hpp                  parser.hpp periodentafel.hpp stackclass.hpp tesselation.hpp tesselationhelpers.hpp vector.hpp verbose.hpp
     1SOURCE = atom.cpp bond.cpp boundary.cpp config.cpp element.cpp ellipsoid.cpp graph.cpp helpers.cpp leastsquaremin.cpp linkedcell.cpp moleculelist.cpp molecule.cpp molecule_dynamics.cpp molecule_fragmentation.cpp molecule_geometry.cpp molecule_graph.cpp molecule_pointcloud.cpp parser.cpp periodentafel.cpp tesselation.cpp tesselationhelpers.cpp vector.cpp verbose.cpp
     2HEADER = atom.hpp bond.hpp boundary.hpp config.hpp defs.hpp element.hpp ellipsoid.hpp graph.hpp helpers.hpp leastsquaremin.hpp linkedcell.hpp lists.hpp memoryallocator.hpp memoryusageobserver.cpp memoryusageobserver.hpp molecule.hpp molecule_template.hpp parser.hpp periodentafel.hpp stackclass.hpp tesselation.hpp tesselationhelpers.hpp vector.hpp verbose.hpp
    33
    4 INCLUDES = -I$(top_srcdir)/src/unittests
     4noinst_PROGRAMS =  ActOnAllTest VectorUnitTest MemoryAllocatorUnitTest MemoryUsageObserverUnitTest TesselationUnitTest
    55
    6 noinst_LIBRARIES = libmolecuilder.a
     6BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB)
     7
    78bin_PROGRAMS = molecuilder joiner analyzer
    89molecuilderdir = ${bindir}
    9 libmolecuilder_a_SOURCES = ${SOURCE} ${HEADER}
    1010molecuilder_DATA = elements.db valence.db orbitals.db Hbonddistance.db Hbondangle.db
    11 molecuilder_SOURCES = builder.cpp
    12 molecuilder_LDADD = libmolecuilder.a
    13 joiner_SOURCES = joiner.cpp datacreator.cpp parser.cpp datacreator.hpp helpers.hpp parser.hpp periodentafel.hpp
    14 joiner_LDADD = libmolecuilder.a
    15 analyzer_SOURCES = analyzer.cpp datacreator.cpp parser.cpp helpers.hpp periodentafel.hpp parser.hpp datacreator.hpp
    16 analyzer_LDADD = libmolecuilder.a
     11molecuilder_LDFLAGS = $(BOOST_LIB)
     12molecuilder_SOURCES =  ${SOURCE} builder.cpp  ${HEADER}
     13joiner_SOURCES = joiner.cpp datacreator.cpp element.cpp helpers.cpp memoryallocator.hpp memoryusageobserver.cpp memoryusageobserver.hpp periodentafel.cpp parser.cpp verbose.cpp datacreator.hpp helpers.hpp parser.hpp periodentafel.hpp
     14analyzer_SOURCES = analyzer.cpp datacreator.cpp element.cpp helpers.cpp memoryallocator.hpp memoryusageobserver.cpp memoryusageobserver.hpp periodentafel.cpp parser.cpp verbose.cpp helpers.hpp periodentafel.hpp parser.hpp datacreator.hpp
    1715
    18 #EXTRA_DIST = ${molecuilder_DATA}
     16TESTS = VectorUnitTest MemoryAllocatorUnitTest MemoryUsageObserverUnitTest TesselationUnitTest
     17check_PROGRAMS = $(TESTS)
     18
     19VectorUnitTest_SOURCES = defs.hpp helpers.cpp helpers.hpp leastsquaremin.cpp leastsquaremin.hpp memoryallocator.hpp memoryusageobserver.cpp memoryusageobserver.hpp vectorunittest.cpp vectorunittest.hpp vector.cpp vector.hpp verbose.cpp verbose.hpp
     20VectorUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
     21VectorUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
     22
     23TesselationUnitTest_SOURCES = defs.hpp helpers.cpp helpers.hpp leastsquaremin.cpp leastsquaremin.hpp linkedcell.cpp linkedcell.hpp memoryallocator.hpp memoryusageobserver.cpp memoryusageobserver.hpp tesselation.cpp tesselation.hpp tesselationhelpers.cpp tesselationhelpers.hpp tesselationunittest.cpp tesselationunittest.hpp vector.cpp vector.hpp verbose.cpp verbose.hpp
     24TesselationUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
     25TesselationUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
     26
     27ActOnAllTest_SOURCES = ActOnAllTest.hp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp defs.hpp helpers.cpp helpers.hpp memoryallocator.hpp memoryusageobserver.cpp memoryusageobserver.hpp vector.cpp vector.hpp verbose.cpp verbose.hpp leastsquaremin.cpp leastsquaremin.hpp
     28ActOnAllTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
     29ActOnAllTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
     30
     31
     32MemoryAllocatorUnitTest_SOURCES = defs.hpp helpers.cpp helpers.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp memoryallocator.hpp memoryusageobserver.cpp memoryusageobserver.hpp verbose.cpp verbose.hpp
     33MemoryAllocatorUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
     34MemoryAllocatorUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
     35
     36MemoryUsageObserverUnitTest_SOURCES = defs.hpp helpers.cpp helpers.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp memoryusageobserver.hpp memoryusageobserver.cpp verbose.cpp verbose.hpp
     37MemoryUsageObserverUnitTest_CXXFLAGS = $(CPPUNIT_CFLAGS)
     38MemoryUsageObserverUnitTest_LDFLAGS = $(CPPUNIT_LIBS) -ldl
     39
     40EXTRA_DIST = ${molecuilder_DATA}
Note: See TracChangeset for help on using the changeset viewer.