-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.am
34 lines (27 loc) · 953 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
# Store macros locally
ACLOCAL_AMFLAGS = -I build-aux/m4
#===========================================================================#
# Values are filled by Makemodule.am files
lib_LTLIBRARIES=
noinst_LIBRARIES=
noinst_LTLIBRARIES=
bin_PROGRAMS=
noinst_PROGRAMS=
check_PROGRAMS=
man1_MANS=
dist_bin_SCRIPTS=
nobase_include_HEADERS=
TESTS=
BUILT_SOURCES=
# Completely overkill, but we want the copyright files too
EXTRA_DIST=submodules
AM_CPPFLAGS=\
-I$(srcdir)/include\
-I$(srcdir)/submodules/googletest/googletest\
-I$(srcdir)/submodules/googletest/googletest/include\
-DABS_SRCDIR=\"$(abs_srcdir)\"\
-DABS_TOP_BUILDDIR=\"$(abs_top_builddir)\"
#===========================================================================#
include $(srcdir)/include/Makemodule.am # lotto headers
include $(srcdir)/tests/Makemodule.am # all tests
#===========================================================================#