-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMakefile.am
More file actions
41 lines (32 loc) · 1.02 KB
/
Makefile.am
File metadata and controls
41 lines (32 loc) · 1.02 KB
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
AM_MAKEFLAGS = --no-print-directory
modules_sources =
modules_ldadd =
modules_cflags =
AM_CFLAGS = $(WARNING_CFLAGS) $(BUILD_CFLAGS)
AM_LDFLAGS = $(BUILD_LDFLAGS)
bin_PROGRAMS = src/modbusd
noinst_PROGRAMS =
src_modbusd_SOURCES = src/main.c \
src/manager.h src/manager.c \
src/slave.h src/slave.c \
src/source.h src/source.c \
src/dbus.h src/dbus.c \
src/options.h src/driver.h \
src/tcp.c src/rtu.c \
src/storage.h src/storage.c \
src/smoke.h src/kfog.c
src_modbusd_LDADD = $(modules_ldadd) @TINYCBOR_LIBS@ @ELL_LIBS@ @MODBUS_LIBS@ -lm
src_modbusd_LDFLAGS = $(AM_LDFLAGS)
src_modbusd_CFLAGS = $(AM_CFLAGS) $(modules_cflags) @TINYCBOR_CFLAGS@ @ELL_CFLAGS@ @MODBUS_CFLAGS@
DISTCLEANFILES =
EXTRA_DIST = src/main.conf src/units.conf
if CONFIGFILES
confdir = $(sysconfdir)/modbus
conf_DATA = src/main.conf
conf_DATA += src/units.conf
endif
MAINTAINERCLEANFILES = Makefile.in \
aclocal.m4 configure config.h.in config.sub config.guess \
ltmain.sh depcomp compile missing install-sh
clean-local:
$(RM) -r src/modbusd