-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
53 lines (44 loc) · 1.13 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
SUBDIRS = lib src data vapi po
glucoseboarddocdir = ${prefix}/doc/ssi-devices
glucoseboarddoc_DATA = \
README \
COPYING \
AUTHORS \
ChangeLog \
INSTALL \
NEWS
BUILD_FILES = \
build/common.am \
build/pkgconfig.am \
build/vapi.am \
build/glucose-board.am \
build/ac-define-dir.m4
INTLTOOL_FILES = \
intltool-extract.in \
intltool-merge.in \
intltool-update.in
EXTRA_DIST = \
$(glucose_boarddoc_DATA) \
$(BUILD_FILES) \
$(INTLTOOL_FILES)
DISTCLEANFILES = \
intltool-extract \
intltool-merge \
intltool-update \
po/.intltool-merge-cache
ACLOCAL_AMFLAGS = -I build
uninstall-local:
-rm -r $(glucose_boarddocdir)
dist-hook: gen-ChangeLog
for specfile in *.spec; do \
if test -f $$specfile; then \
cp -p $$specfile $(distdir); \
fi \
done
.PHONY: gen-ChangeLog
gen-ChangeLog:
if test -d .git; then \
$(top_srcdir)/gitlog-to-changelog > $(distdir)/cl-t; \
rm -f $(distdir)/ChangeLog; \
mv $(distdir)/cl-t $(distdir)/ChangeLog; \
fi