Changeset 315a1e for src


Ignore:
Timestamp:
Oct 30, 2015, 11:44:33 AM (10 years ago)
Author:
Frederik Heber <heber@…>
Children:
b09709
Parents:
3681dd
git-author:
Frederik Heber <heber@…> (07/25/15 17:56:56)
git-committer:
Frederik Heber <heber@…> (10/30/15 11:44:33)
Message:

FIX: Fixed several lintian warnings when making debian package.

  • library name is now lower case, package name is now libcodepatterns.
  • external libs are now added to LDFLAGS instead of LIBADD.
Location:
src
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • src/Helpers/Makefile.am

    r3681dd r315a1e  
    3434HELPERDEBUGHEADER =
    3535
    36 noinst_LTLIBRARIES = libCodePatterns-Helpers.la libCodePatterns-Helpers-debug.la
    37 libCodePatterns_Helpers_la_includedir = $(includedir)/CodePatterns/
    38 libCodePatterns_Helpers_debug_la_includedir = $(includedir)/CodePatterns/
    39 libCodePatterns_Helpers_la_LDFLAGS = \
    40         $(BOOST_THREAD_LDFLAGS)
    41 libCodePatterns_Helpers_debug_la_LDFLAGS = \
    42         $(BOOST_THREAD_LDFLAGS)
    43 libCodePatterns_Helpers_la_LIBADD = \
     36noinst_LTLIBRARIES = libcodepatterns-Helpers.la libcodepatterns-Helpers-debug.la
     37libcodepatterns_Helpers_la_includedir = $(includedir)/CodePatterns/
     38libcodepatterns_Helpers_debug_la_includedir = $(includedir)/CodePatterns/
     39libcodepatterns_Helpers_la_LDFLAGS = \
     40        $(AM_LDFLAGS) \
     41        $(BOOST_THREAD_LDFLAGS) \
    4442        $(LIBRT) \
    4543        $(BOOST_THREAD_LIBS)
    46 libCodePatterns_Helpers_debug_la_LIBADD = \
     44libcodepatterns_Helpers_debug_la_LDFLAGS = \
     45        $(AM_LDFLAGS) \
     46        $(BOOST_THREAD_LDFLAGS) \
    4747        $(LIBRT) \
    4848        $(BOOST_THREAD_LIBS)
    4949
    50 libCodePatterns_Helpers_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS)
    51 libCodePatterns_Helpers_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_HELPER $(AM_CPPFLAGS)
     50libcodepatterns_Helpers_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS)
     51libcodepatterns_Helpers_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_HELPER $(AM_CPPFLAGS)
    5252
    53 libCodePatterns_Helpers_la_include_HEADERS = $(HELPERHEADER)
    54 libCodePatterns_Helpers_debug_la_include_HEADERS = $(HELPERDEBUGHEADER)
     53libcodepatterns_Helpers_la_include_HEADERS = $(HELPERHEADER)
     54libcodepatterns_Helpers_debug_la_include_HEADERS = $(HELPERDEBUGHEADER)
    5555
    5656## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
     
    6262## from each source file.  Note that it is not necessary to list header files
    6363## which are already listed elsewhere in a _HEADERS variable assignment.
    64 libCodePatterns_Helpers_la_SOURCES = $(HELPERSOURCE)
    65 libCodePatterns_Helpers_debug_la_SOURCES = $(HELPERDEBUGSOURCE)
     64libcodepatterns_Helpers_la_SOURCES = $(HELPERSOURCE)
     65libcodepatterns_Helpers_debug_la_SOURCES = $(HELPERDEBUGSOURCE)
  • src/Helpers/unittests/Makefile.am

    r3681dd r315a1e  
    3434#nodist_AssertUnitTest_SOURCES =
    3535AssertUnitTest_LDADD = \
    36         ../Helpers/libCodePatterns-Helpers-debug.la
     36        ../Helpers/libcodepatterns-Helpers-debug.la
    3737       
    3838ChronosUnitTest_SOURCES = UnitTestMain.cpp \
     
    4646        $(top_srcdir)/src/CodePatterns/Info.hpp
    4747ChronosUnitTest_LDADD = \
    48         ../Helpers/libCodePatterns-Helpers-debug.la \
     48        ../Helpers/libcodepatterns-Helpers-debug.la \
    4949        $(LIBRT)
    5050
     
    6565        $(top_srcdir)/src/CodePatterns/MemDebug.hpp
    6666InfoUnitTest_LDADD = \
    67         ../Helpers/libCodePatterns-Helpers-debug.la
     67        ../Helpers/libcodepatterns-Helpers-debug.la
    6868
    6969IteratorAdaptorsUnitTest_SOURCES = UnitTestMain.cpp \
     
    7373        $(top_srcdir)/src/CodePatterns/IteratorAdaptors.hpp
    7474IteratorAdaptorsUnitTest_LDADD = \
    75         ../Helpers/libCodePatterns-Helpers-debug.la
     75        ../Helpers/libcodepatterns-Helpers-debug.la
    7676
    7777LogUnitTest_SOURCES = UnitTestMain.cpp \
     
    8585        $(top_srcdir)/src/CodePatterns/MemDebug.hpp
    8686LogUnitTest_LDADD = \
    87         ../Helpers/libCodePatterns-Helpers-debug.la
     87        ../Helpers/libcodepatterns-Helpers-debug.la
    8888
    8989RangeUnitTest_SOURCES = UnitTestMain.cpp \
     
    9292#nodist_RangeUnitTest_SOURCES =
    9393RangeUnitTest_LDADD = \
    94         ../Helpers/libCodePatterns-Helpers-debug.la
     94        ../Helpers/libcodepatterns-Helpers-debug.la
    9595
    9696
  • src/Makefile.am

    r3681dd r315a1e  
    1919        $(CONFIGSOURCES) \
    2020        codepatterns-config.cpp
    21 codepatterns_config_CPPFLAGS = $(BOOST_CPPFLAGS)
    22 codepatterns_config_LDFLAGS = $(AM_LDFLAGS) \
    23         $(BOOST_PROGRAM_OPTIONS_LDFLAGS)
     21codepatterns_config_CPPFLAGS = \
     22        $(AM_CPPFLAGS) \
     23        $(BOOST_CPPFLAGS)
     24codepatterns_config_LDFLAGS = \
     25        $(AM_LDFLAGS) \
     26        $(BOOST_PROGRAM_OPTIONS_LDFLAGS) \
     27        $(BOOST_PROGRAM_OPTIONS_LIBS)
    2428codepatterns_config_LDADD = \
    25         $(BOOST_PROGRAM_OPTIONS_LIBS) \
    26         libCodePatterns.la
     29        libcodepatterns.la
    2730
    2831codepatterns_debug_config_SOURCES = \
    2932        $(CONFIGSOURCES) \
    3033        codepatterns-debug-config.cpp
    31 codepatterns_debug_config_CPPFLAGS = $(BOOST_CPPFLAGS)
    32 codepatterns_debug_config_LDFLAGS = $(AM_LDFLAGS) \
    33         $(BOOST_PROGRAM_OPTIONS_LDFLAGS)
     34codepatterns_debug_config_CPPFLAGS = \
     35        $(AM_CPPFLAGS) \
     36        $(BOOST_CPPFLAGS)
     37codepatterns_debug_config_LDFLAGS = \
     38        $(AM_LDFLAGS) \
     39        $(BOOST_PROGRAM_OPTIONS_LDFLAGS) \
     40        $(BOOST_PROGRAM_OPTIONS_LIBS)
    3441codepatterns_debug_config_LDADD = \
    35         $(BOOST_PROGRAM_OPTIONS_LIBS) \
    36         libCodePatterns.la
     42        libcodepatterns.la
    3743
    3844dist_man_MANS = \
     
    5460
    5561##-@CODEPATTERNS_API_VERSION@
    56 lib_LTLIBRARIES = libCodePatterns.la libCodePatterns-debug.la
    57 libCodePatterns_la_LIBADD = \
    58         Patterns/libCodePatterns-Patterns.la \
    59         Observer/libCodePatterns-Observer.la \
    60         Helpers/libCodePatterns-Helpers.la \
     62lib_LTLIBRARIES = libcodepatterns.la libcodepatterns-debug.la
     63libcodepatterns_la_LDFLAGS = \
     64        $(AM_LDFLAGS) \
    6165        $(LIBRT)
    62 libCodePatterns_debug_la_LIBADD = \
    63         Patterns/libCodePatterns-Patterns-debug.la \
    64         Observer/libCodePatterns-Observer-debug.la \
    65         Helpers/libCodePatterns-Helpers-debug.la \
     66libcodepatterns_debug_la_LDFLAGS = \
     67        $(AM_LDFLAGS) \
    6668        $(LIBRT)
     69libcodepatterns_la_LIBADD = \
     70        Patterns/libcodepatterns-Patterns.la \
     71        Observer/libcodepatterns-Observer.la \
     72        Helpers/libcodepatterns-Helpers.la
     73libcodepatterns_debug_la_LIBADD = \
     74        Patterns/libcodepatterns-Patterns-debug.la \
     75        Observer/libcodepatterns-Observer-debug.la \
     76        Helpers/libcodepatterns-Helpers-debug.la
    6777
    68 libCodePatterns_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS)
    69 libCodePatterns_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_OBSERVER $(AM_CPPFLAGS)
     78libcodepatterns_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS)
     79libcodepatterns_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_OBSERVER $(AM_CPPFLAGS)
    7080
    7181## Define the source file list for the "libexample-@CODEPATTERNS_API_VERSION@.la"
     
    7888## which are already listed elsewhere in a _HEADERS variable assignment.
    7989#-$(CODEPATTERNS_API_VERSION)
    80 libCodePatterns_la_SOURCES = $(SOURCE)
    81 libCodePatterns_debug_la_SOURCES = $(SOURCEDEBUG)
     90libcodepatterns_la_SOURCES = $(SOURCE)
     91libcodepatterns_debug_la_SOURCES = $(SOURCEDEBUG)
    8292
    8393## Instruct libtool to include ABI version information in the generated shared
     
    8595## that all version information is kept in one place.
    8696#-$(CODEPATTERNS_API_VERSION)
    87 libCodePatterns_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(CODEPATTERNS_SO_VERSION)
    88 libCodePatterns_debug_la_LDFLAGS = $(AM_LDFLAGS) -version-info $(CODEPATTERNS_SO_VERSION)
     97libcodepatterns_la_LDFLAGS += -version-info $(CODEPATTERNS_SO_VERSION)
     98libcodepatterns_debug_la_LDFLAGS += -version-info $(CODEPATTERNS_SO_VERSION)
    8999
    90100## The generated configuration header is installed in its own subdirectory of
     
    99109## configuration header file is generated at configure time and should not be
    100110## shipped with the source tarball.
    101 libCodePatterns_libincludedir = $(includedir)/CodePatterns/
     111libcodepatterns_libincludedir = $(includedir)/CodePatterns/
    102112#-$(CODEPATTERNS_API_VERSION)
    103 libCodePatterns_libinclude_HEADERS = $(HEADER) $(top_builddir)/libCodePatterns_config.h
     113libcodepatterns_libinclude_HEADERS = $(HEADER) $(top_builddir)/libcodepatterns_config.h
    104114
    105115## Install the generated pkg-config file (.pc) into the expected location for
     
    108118## in which case the correct install location would be $(datadir)/pkgconfig.
    109119pkgconfigdir = $(libdir)/pkgconfig
    110 pkgconfig_DATA = $(top_builddir)/CodePatterns.pc $(top_builddir)/CodePatterns-debug.pc
     120pkgconfig_DATA = $(top_builddir)/libcodepatterns.pc $(top_builddir)/libcodepatterns-debug.pc
    111121
    112122FORCE:
     
    127137
    128138codepatterns-config.cpp:
    129         echo -e "const char *CODEPATTERNSCFLAGS=\"-I$(includedir) ${BOOST_CPPFLAGS}\";\nconst char *CODEPATTERNSLDFLAGS=\"-L$(libdir) $(BOOST_LDFLAGS)\";\nconst char *CODEPATTERNSLIBS=\"-lCodePatterns $(BOOST_THREAD_LIB)\";\n" > $@
     139        echo -e "const char *CODEPATTERNSCFLAGS=\"-I$(includedir) ${BOOST_CPPFLAGS}\";\nconst char *CODEPATTERNSLDFLAGS=\"-L$(libdir) $(BOOST_LDFLAGS)\";\nconst char *CODEPATTERNSLIBS=\"-lcodepatterns $(BOOST_THREAD_LIB)\";\n" > $@
    130140
    131141codepatterns-debug-config.cpp:
    132         echo -e "const char *CODEPATTERNSCFLAGS=\"-I$(includedir) ${BOOST_CPPFLAGS}\";\nconst char *CODEPATTERNSLDFLAGS=\"-L$(libdir) $(BOOST_LDFLAGS)\";\nconst char *CODEPATTERNSLIBS=\"-lCodePatterns-debug $(BOOST_THREAD_LIB)\";\n" > $@
     142        echo -e "const char *CODEPATTERNSCFLAGS=\"-I$(includedir) ${BOOST_CPPFLAGS}\";\nconst char *CODEPATTERNSLDFLAGS=\"-L$(libdir) $(BOOST_LDFLAGS)\";\nconst char *CODEPATTERNSLIBS=\"-lcodepatterns-debug $(BOOST_THREAD_LIB)\";\n" > $@
  • src/Observer/Makefile.am

    r3681dd r315a1e  
    3737OBSERVERDEBUGHEADER =
    3838
    39 noinst_LTLIBRARIES = libCodePatterns-Observer.la libCodePatterns-Observer-debug.la
    40 libCodePatterns_Observer_la_includedir = $(includedir)/CodePatterns/Observer/
    41 libCodePatterns_Observer_debug_la_includedir = $(includedir)/CodePatterns/Observer/
     39noinst_LTLIBRARIES = libcodepatterns-Observer.la libcodepatterns-Observer-debug.la
     40libcodepatterns_Observer_la_includedir = $(includedir)/CodePatterns/Observer/
     41libcodepatterns_Observer_debug_la_includedir = $(includedir)/CodePatterns/Observer/
    4242
    43 libCodePatterns_Observer_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS)
    44 libCodePatterns_Observer_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_OBSERVER $(AM_CPPFLAGS)
     43libcodepatterns_Observer_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS)
     44libcodepatterns_Observer_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_OBSERVER $(AM_CPPFLAGS)
    4545
    46 libCodePatterns_Observer_la_include_HEADERS = $(OBSERVERHEADER)
    47 libCodePatterns_Observer_debug_la_include_HEADERS = $(OBSERVERDEBUGHEADER)
     46libcodepatterns_Observer_la_include_HEADERS = $(OBSERVERHEADER)
     47libcodepatterns_Observer_debug_la_include_HEADERS = $(OBSERVERDEBUGHEADER)
    4848
    4949## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
     
    5555## from each source file.  Note that it is not necessary to list header files
    5656## which are already listed elsewhere in a _HEADERS variable assignment.
    57 libCodePatterns_Observer_la_SOURCES = $(OBSERVERSOURCE)
    58 libCodePatterns_Observer_debug_la_SOURCES = $(OBSERVERDEBUGSOURCE)
     57libcodepatterns_Observer_la_SOURCES = $(OBSERVERSOURCE)
     58libcodepatterns_Observer_debug_la_SOURCES = $(OBSERVERDEBUGSOURCE)
    5959
    6060#Observer/all.hpp: FORCE
  • src/Observer/unittests/Makefile.am

    r3681dd r315a1e  
    3838        $(top_srcdir)/src/CodePatterns/Observer/ObserverIterator.hpp
    3939ObserverUnitTest_LDADD = \
    40         ../Observer/libCodePatterns-Observer-debug.la \
    41         ../Helpers/libCodePatterns-Helpers-debug.la
     40        ../Observer/libcodepatterns-Observer-debug.la \
     41        ../Helpers/libcodepatterns-Helpers-debug.la
    4242
    4343GraveyardUnitTest_SOURCES = UnitTestMain.cpp \
     
    5656        $(top_srcdir)/src/CodePatterns/Observer/ObserverIterator.hpp
    5757GraveyardUnitTest_LDADD = \
    58         ../Observer/libCodePatterns-Observer-debug.la \
    59         ../Helpers/libCodePatterns-Helpers-debug.la
     58        ../Observer/libcodepatterns-Observer-debug.la \
     59        ../Helpers/libcodepatterns-Helpers-debug.la
    6060
    6161ObservedContainerUnitTest_SOURCES = UnitTestMain.cpp \
     
    6868        $(top_srcdir)/src/CodePatterns/Observer/ObserverContainer_impl.hpp
    6969ObservedContainerUnitTest_LDADD = \
    70         ../Observer/libCodePatterns-Observer-debug.la \
    71         ../Helpers/libCodePatterns-Helpers-debug.la
     70        ../Observer/libcodepatterns-Observer-debug.la \
     71        ../Helpers/libcodepatterns-Helpers-debug.la
    7272
    7373#AUTOMAKE_OPTIONS = parallel-tests
  • src/Patterns/Makefile.am

    r3681dd r315a1e  
    3030PATTERNDEBUGHEADER =
    3131
    32 noinst_LTLIBRARIES = libCodePatterns-Patterns.la libCodePatterns-Patterns-debug.la
    33 libCodePatterns_Patterns_la_includedir = $(includedir)/CodePatterns/
    34 libCodePatterns_Patterns_debug_la_includedir = $(includedir)/CodePatterns/
    35 libCodePatterns_Patterns_la_LDFLAGS = \
    36         $(BOOST_THREAD_LDFLAGS)
    37 libCodePatterns_Patterns_debug_la_LDFLAGS = \
    38         $(BOOST_THREAD_LDFLAGS)
    39 libCodePatterns_Patterns_la_LIBADD = \
     32noinst_LTLIBRARIES = libcodepatterns-Patterns.la libcodepatterns-Patterns-debug.la
     33libcodepatterns_Patterns_la_includedir = $(includedir)/CodePatterns/
     34libcodepatterns_Patterns_debug_la_includedir = $(includedir)/CodePatterns/
     35libcodepatterns_Patterns_la_LDFLAGS = \
     36        $(AM_LDFLAGS) \
     37        $(BOOST_THREAD_LDFLAGS) \
    4038        $(BOOST_THREAD_LIBS)
    41 libCodePatterns_Patterns_debug_la_LIBADD = \
     39libcodepatterns_Patterns_la_LIBADD =
     40libcodepatterns_Patterns_debug_la_LDFLAGS = \
     41        $(AM_LDFLAGS) \
     42        $(BOOST_THREAD_LDFLAGS) \
    4243        $(BOOST_THREAD_LIBS)
     44libcodepatterns_Patterns_debug_la_LIBADD =
    4345
    44 libCodePatterns_Patterns_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS)
    45 libCodePatterns_Patterns_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_OBSERVER $(AM_CPPFLAGS)
     46libcodepatterns_Patterns_la_CPPFLAGS = -DNDEBUG -DNO_MEMDEBUG $(AM_CPPFLAGS)
     47libcodepatterns_Patterns_debug_la_CPPFLAGS = -DMEMDEBUG -DLOG_OBSERVER $(AM_CPPFLAGS)
    4648
    47 libCodePatterns_Patterns_la_include_HEADERS = $(PATTERNHEADER)
    48 libCodePatterns_Patterns_debug_la_include_HEADERS = $(PATTERNDEBUGHEADER)
     49libcodepatterns_Patterns_la_include_HEADERS = $(PATTERNHEADER)
     50libcodepatterns_Patterns_debug_la_include_HEADERS = $(PATTERNDEBUGHEADER)
    4951
    5052## Define the source file list for the "libexample-@MOLECUILDER_API_VERSION@.la"
     
    5658## from each source file.  Note that it is not necessary to list header files
    5759## which are already listed elsewhere in a _HEADERS variable assignment.
    58 libCodePatterns_Patterns_la_SOURCES = $(PATTERNSOURCE)
    59 libCodePatterns_Patterns_debug_la_SOURCES = $(PATTERNDEBUGSOURCE)
     60libcodepatterns_Patterns_la_SOURCES = $(PATTERNSOURCE)
     61libcodepatterns_Patterns_debug_la_SOURCES = $(PATTERNDEBUGSOURCE)
    6062
    6163#Observer/all.hpp: FORCE
  • src/Patterns/unittests/Makefile.am

    r3681dd r315a1e  
    8181        $(top_srcdir)/src/CodePatterns/Observer/ObserverIterator.hpp
    8282CacheableUnitTest_LDADD = \
    83         ../Observer/libCodePatterns-Observer-debug.la \
    84         ../Patterns/libCodePatterns-Patterns-debug.la \
    85         ../Helpers/libCodePatterns-Helpers-debug.la
     83        ../Observer/libcodepatterns-Observer-debug.la \
     84        ../Patterns/libcodepatterns-Patterns-debug.la \
     85        ../Helpers/libcodepatterns-Helpers-debug.la
    8686
    8787CloneUnitTest_SOURCES = UnitTestMain.cpp \
     
    9595        $(top_srcdir)/src/CodePatterns/Clone.hpp
    9696CloneUnitTest_LDADD = \
    97         ../Helpers/libCodePatterns-Helpers-debug.la
     97        ../Helpers/libcodepatterns-Helpers-debug.la
    9898
    9999CreatorUnitTest_SOURCES = UnitTestMain.cpp \
     
    106106        $(top_srcdir)/src/CodePatterns/Creator.hpp
    107107CreatorUnitTest_LDADD = \
    108         ../Helpers/libCodePatterns-Helpers-debug.la
     108        ../Helpers/libcodepatterns-Helpers-debug.la
    109109
    110110FactoryUnitTest_SOURCES = UnitTestMain.cpp \
     
    121121        $(top_srcdir)/src/CodePatterns/Factory_impl.hpp
    122122FactoryUnitTest_LDADD = \
    123         ../Helpers/libCodePatterns-Helpers-debug.la
     123        ../Helpers/libcodepatterns-Helpers-debug.la
    124124
    125125ManipulableCloneUnitTest_SOURCES = UnitTestMain.cpp \
     
    133133        $(top_srcdir)/src/CodePatterns/ManipulableClone.hpp
    134134ManipulableCloneUnitTest_LDADD = \
    135         ../Helpers/libCodePatterns-Helpers-debug.la
     135        ../Helpers/libcodepatterns-Helpers-debug.la
    136136
    137137ManipulablePrototypeFactoryUnitTest_SOURCES = UnitTestMain.cpp \
     
    149149        $(top_srcdir)/src/CodePatterns/ManipulablePrototypeFactory_impl.hpp
    150150ManipulablePrototypeFactoryUnitTest_LDADD = \
    151         ../Helpers/libCodePatterns-Helpers-debug.la
     151        ../Helpers/libcodepatterns-Helpers-debug.la
    152152
    153153ObservedValueUnitTest_SOURCES = UnitTestMain.cpp \
     
    160160        $(top_srcdir)/src/CodePatterns/Observer/Observer.hpp
    161161ObservedValueUnitTest_LDADD = \
    162         ../Observer/libCodePatterns-Observer-debug.la \
    163         ../Patterns/libCodePatterns-Patterns-debug.la \
    164         ../Helpers/libCodePatterns-Helpers-debug.la
     162        ../Observer/libcodepatterns-Observer-debug.la \
     163        ../Patterns/libcodepatterns-Patterns-debug.la \
     164        ../Helpers/libcodepatterns-Helpers-debug.la
    165165
    166166PrototypeFactoryUnitTest_SOURCES = UnitTestMain.cpp \
     
    178178        $(top_srcdir)/src/CodePatterns/PrototypeFactory_impl.hpp
    179179PrototypeFactoryUnitTest_LDADD = \
    180         ../Helpers/libCodePatterns-Helpers-debug.la
     180        ../Helpers/libcodepatterns-Helpers-debug.la
    181181
    182182RegistryUnitTest_SOURCES = UnitTestMain.cpp \
     
    191191        $(top_srcdir)/src/CodePatterns/Registry_impl.hpp
    192192RegistryUnitTest_LDADD = \
    193         ../Helpers/libCodePatterns-Helpers-debug.la
     193        ../Helpers/libcodepatterns-Helpers-debug.la
    194194
    195195SingletonUnitTest_SOURCES = UnitTestMain.cpp \
     
    198198#nodist_SingletonUnitTest_SOURCES =
    199199SingletonUnitTest_LDADD = \
    200         ../Helpers/libCodePatterns-Helpers-debug.la
     200        ../Helpers/libcodepatterns-Helpers-debug.la
    201201
    202202#AUTOMAKE_OPTIONS = parallel-tests
  • src/unittests/Makefile.am

    r3681dd r315a1e  
    2525        $(TESTHEADERS)
    2626TestRunner_LDADD = \
    27         ../Patterns/libCodePatterns-Patterns-debug.la \
    28         ../Observer/libCodePatterns-Observer-debug.la \
    29         ../Helpers/libCodePatterns-Helpers-debug.la \
     27        ../Patterns/libcodepatterns-Patterns-debug.la \
     28        ../Observer/libcodepatterns-Observer-debug.la \
     29        ../Helpers/libcodepatterns-Helpers-debug.la \
    3030        $(LIBRT)
    3131
Note: See TracChangeset for help on using the changeset viewer.