-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathMakefile.am
More file actions
46 lines (30 loc) · 787 Bytes
/
Makefile.am
File metadata and controls
46 lines (30 loc) · 787 Bytes
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
ACLOCAL_AMFLAGS = -I m4
export _MEMLEAKDEBUG MISDN_CAPI_GROUP
MISDN_CAPI_GROUP=@MISDN_GROUP@
if MEMLEAKDEBUG
_MEMLEAKDEBUG = "-DMEMLEAK_DEBUG=1"
else
_MEMLEAKDEBUG =
endif
if OPT_EXAMPLE
MAYBE_EXAMPLE = example
endif
if OPT_GUI
MAYBE_GUI = guitools
endif
if OPT_CAPI
MAYBE_CAPI = capi20 capi20/module
endif
SUBDIRS = include lib tools bridge l1oip $(MAYBE_EXAMPLE) $(MAYBE_GUI) $(MAYBE_CAPI)
CLEANFILES = *~
DISTCLEANFILES = 45-misdn.rules
EXTRA_DIST = m4
if GIT_REPO
ChangeLog: $(srcdir)/.git/objects
git log > $@
endif
install-data-local:
install -d $(DESTDIR)$(sysconfdir)/udev/rules.d
install -m 644 45-misdn.rules $(DESTDIR)$(sysconfdir)/udev/rules.d/45-misdn.rules
distuninstallcheck_listfiles = \
find . -type f -print | grep -v '45-misdn.rules'