12 lines
387 B
Makefile
12 lines
387 B
Makefile
include $(top_srcdir)/common.mk
|
|
|
|
noinst_LTLIBRARIES = libolaexportmap.la
|
|
libolaexportmap_la_SOURCES = ExportMap.cpp
|
|
|
|
TESTS = ExportMapTester
|
|
check_PROGRAMS = $(TESTS)
|
|
ExportMapTester_SOURCES = ExportMapTester.cpp ExportMapTest.cpp
|
|
ExportMapTester_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
|
ExportMapTester_LDFLAGS = $(CPPUNIT_LIBS)
|
|
ExportMapTester_LDADD = ./libolaexportmap.la ../utils/libolautils.la
|