sandbox/misc/algotune/Makefile.am

17 lines
589 B
Makefile
Raw Permalink Normal View History

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
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