-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathMakefile.am
63 lines (50 loc) · 1.34 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
56
57
58
59
60
61
62
63
NULL =
AM_CXXFLAGS = $(ARCH_CXXFLAGS) $(WARN_CXXFLAGS) -Wno-error=inline -Wno-inline -O3 \
-funsafe-math-optimizations \
-fno-trapping-math \
-fno-signaling-nans \
-pthread
AM_LDFLAGS = -lrt
bin_PROGRAMS = cribsense
cribsense_SOURCES = \
src/VideoSource.hpp \
src/CommandLine.hpp \
src/RieszTransform.hpp \
src/ComplexMat.hpp \
src/Butterworth.hpp \
src/WorkerThread.hpp \
src/INIReader.h \
src/ini.h \
src/MotionDetection.hpp \
src/CommandLine.cpp \
src/Butterworth.cpp \
src/INIReader.cpp \
src/ini.c \
src/MotionDetection.cpp \
src/RieszTransform.cpp \
src/main.cpp \
src/VideoSource.cpp \
$(NULL)
cribsense_CXXFLAGS = $(AM_CXXFLAGS) $(DEPS_CFLAGS)
cribsense_LDFLAGS = $(AM_LDFLAGS) $(DEPS_LIBS)
dist_doc_DATA = \
docs/index.md \
docs/setup/hw-setup.md \
docs/setup/sw-setup.md
configdir = $(sysconfdir)/cribsense
dist_config_DATA = config.ini
systemdsystemunitdir = $(sysconfdir)/systemd/system
systemdsystemunit_DATA = cribsense.service
cribsense.service: cribsense.service.in
sed -e 's|[@]bindir@|$(bindir)|g' -e 's|[@]sysconfdir@|$(sysconfdir)|g' $< > $@
CLEANFILES = cribsense.service
GITIGNOREFILES = \
aclocal.m4 \
build-aux \
config.h.in \
m4/libtool.m4 \
m4/ltoptions.m4 \
m4/ltsugar.m4 \
m4/ltversion.m4 \
m4/lt~obsolete.m4
-include $(top_srcdir)/git.mk