-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.am
55 lines (39 loc) · 1.65 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
AUTOMAKE_OPTIONS = subdir-objects
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
AM_CXXFLAGS = -fpic -Wall -Wextra
lib_LTLIBRARIES = libebus-@LIBEBUS_API_VERSION@.la
libebus_@LIBEBUS_API_VERSION@_la_SOURCES = libebus/port.cpp \
libebus/bus.cpp \
libebus/commands.cpp \
libebus/config.cpp \
libebus/dump.cpp \
libebus/decode.cpp
libebus_@LIBEBUS_API_VERSION@_la_LDFLAGS = -version-info $(LIBEBUS_SO_VERSION)
libebus_includedir = $(includedir)/libebus-$(LIBEBUS_API_VERSION)
nobase_libebus_include_HEADERS = libebus.h \
libebus/port.h \
libebus/bus.h \
libebus/commands.h \
libebus/config.h \
libebus/dump.h \
libebus/decode.h
libebus_libincludedir = $(libdir)/libebus-$(LIBEBUS_API_VERSION)/include
nodist_libebus_libinclude_HEADERS = libebusconfig.h
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libebus-$(LIBEBUS_API_VERSION).pc
dist_noinst_SCRIPTS = autogen.sh
noinst_PROGRAMS = test_port \
test_bus \
test_commands \
test_config \
test_decode
test_port_SOURCES = test/test_port.cpp
test_port_LDADD = libebus-$(LIBEBUS_API_VERSION).la
test_bus_SOURCES = test/test_bus.cpp
test_bus_LDADD = libebus-$(LIBEBUS_API_VERSION).la
test_commands_SOURCES = test/test_commands.cpp
test_commands_LDADD = libebus-$(LIBEBUS_API_VERSION).la
test_config_SOURCES = test/test_config.cpp
test_config_LDADD = libebus-$(LIBEBUS_API_VERSION).la
test_decode_SOURCES = test/test_decode.cpp
test_decode_LDADD = libebus-$(LIBEBUS_API_VERSION).la