2018-04-13 03:46:58 +00:00
|
|
|
AM_CPPFLAGS = -Wall -Wextra -pedantic -Wshadow -Wpointer-arith -Wcast-align
|
|
|
|
AM_CPPFLAGS += -Wwrite-strings -Wmissing-declarations -Wno-long-long -Werror
|
|
|
|
AM_CPPFLAGS += -Wunused-variable -std=c++14 -D_XOPEN_SOURCE -O2 -I.
|
|
|
|
AM_CPPFLAGS += -fno-elide-constructors -Weffc++
|
2018-04-13 04:24:50 +00:00
|
|
|
ACLOCAL_AMFLAGS = -I m4
|
2018-04-13 03:46:58 +00:00
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = libalgotune-1.pc
|
|
|
|
|
|
|
|
lib_LTLIBRARIES = libalgotune.la
|
|
|
|
nobase_include_HEADERS = algotune.h
|
|
|
|
libalgotune_la_SOURCES = algotune.cc
|
2018-04-13 04:24:50 +00:00
|
|
|
|
|
|
|
check_PROGRAMS = algotune_test
|
|
|
|
algotune_test_SOURCES = algotune_test.cc
|
|
|
|
algotune_test_LDADD = libalgotune.la
|