-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
39 lines (31 loc) · 866 Bytes
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
ACLOCAL_AMFLAGS=-I m4
lib_LTLIBRARIES = libinterflop_checkfloatmax.la
if ENABLE_LTO
LTO_FLAGS = -flto
else
LTO_FLAGS =
endif
if ENABLE_WARNINGS
WARNING_FLAGS = -Wall -Wextra -Wno-varargs
else
WARNING_FLAGS =
endif
libinterflop_checkfloatmax_la_SOURCES = \
interflop_checkfloatmax.cxx
libinterflop_checkfloatmax_la_CFLAGS = \
-I@INTERFLOP_INCLUDEDIR@/ \
-fno-stack-protector \
$(LTO_FLAGS) -Og \
$(WARNING_FLAGS)
libinterflop_checkfloatmax_la_CXXFLAGS = \
-I@INTERFLOP_INCLUDEDIR@/ \
-fno-stack-protector \
$(LTO_FLAGS) -Og \
$(WARNING_FLAGS)
libinterflop_checkfloatmax_la_LDFLAGS = \
$(LTO_FLAGS) -Og
libinterflop_checkfloatmax_la_LIBADD = \
@INTERFLOP_LIBDIR@/libinterflop_logger.la \
@INTERFLOP_LIBDIR@/libinterflop_stdlib.la
includesdir=$(includedir)/interflop
includes_HEADERS= interflop_checkfloatmax.h