-
Notifications
You must be signed in to change notification settings - Fork 325
/
Makefile.am
141 lines (109 loc) · 4.52 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
# Process this file with automake to generate a GNU Makefile
########################################################################
# put file lists and special compile rules here
bin_SCRIPTS = gphoto2-config
EXTRA_DIST = MAINTAINERS TESTERS installcheck.mk
EXTRA_DIST += HACKING.md SECURITY.md
# Note: $(subdirs) lists all the directories from AC_CONFIG_SUBDIRS()
SUBDIRS = $(subdirs) libgphoto2 camlibs tests examples po packaging doc
EXTRA_DIST += libgphoto2.pc.in
pkgconfig_DATA = libgphoto2.pc
EXTRA_DIST += libgphoto2-uninstalled.pc.in
noinst_DATA = libgphoto2-uninstalled.pc
EXTRA_DIST += ChangeLog
EXTRA_DIST += INSTALL
EXTRA_DIST += OUTDATED.txt
doc_DATA = AUTHORS COPYING NEWS
doc_DATA += ABOUT-NLS ChangeLog
EXTRA_DIST += README.md
doc_DATA += README.md
EXTRA_DIST += RELEASE-HOWTO.md
doc_DATA += RELEASE-HOWTO.md
EXTRA_DIST += README.packaging
doc_DATA += README.packaging
nobase_include_HEADERS = \
gphoto2/gphoto2.h \
gphoto2/gphoto2-abilities-list.h\
gphoto2/gphoto2-camera.h \
gphoto2/gphoto2-context.h \
gphoto2/gphoto2-file.h \
gphoto2/gphoto2-filesys.h \
gphoto2/gphoto2-library.h \
gphoto2/gphoto2-list.h \
gphoto2/gphoto2-result.h \
gphoto2/gphoto2-setting.h \
gphoto2/gphoto2-version.h \
gphoto2/gphoto2-widget.h
DISTCLEANFILES = libgphoto2/gphoto2-endian.h
# we use just ONE .PHONY target in order not to confuse automake
.PHONY: source-code-check install-drivers
########################################################################
# source code check maintenance task
#
# This finds code patterns we don't want to have.
#
# Use it to get rid of existing patterns and make sure they aren't
# reintroduced later.
#
# The output is meant to be read and interpreted by human programmers.
source-code-check:
@echo "######## Finding // comments"
find $(srcdir) -type f -name '*.[ch]' -exec grep -E -H '(^//|[^:]//)' {} \;
@echo "######## Finding remainders of Arnaud's comment replacement"
find $(srcdir) -type f -name '*.[ch]' -exec grep -E -H 'http:/\*' {} \;
@echo "######## Finding explicit libintl.h references"
find $(srcdir) -type f -name '*.[ch]' -exec grep -E -H '^#.*include.*libintl\.h' {} \;
########################################################################
# Shortcut for installation of a subset of camlibs/drivers
# Usage: make CAMLIBS="canon.la ptp2.la" install-camlibs
install-camlibs:
cd camlibs && $(MAKE) $(AM_MAKEFLAGS) CAMLIBS="$(CAMLIBS)" install-camlibs
########################################################################
# Convenience shortcuts to update the *.po translation files in both
# po/ subdirs at once and to reset the *.po translation files to "git
# HEAD" in both po/ subdirs at once.
PO_SUBDIRS =
PO_SUBDIRS += libgphoto2_port/po
PO_SUBDIRS += po
# Run "git checkout *.po" in all po/ subdirs
# which is quite useful after "make dist" to clean up "git status".
.PHONY: git-checkout-po
git-checkout-po:
set -e; cd "$(top_srcdir)" && if test -d .git; then \
for d in $(PO_SUBDIRS); do \
(cd "$$d" && git checkout *.po); \
done; \
fi
.PHONY: pull-translations
if HAVE_RSYNC
pull-translations:
$(RSYNC) -Lrtvz translationproject.org::tp/latest/libgphoto2/ $(top_srcdir)/po
$(RSYNC) -Lrtvz translationproject.org::tp/latest/libgphoto2_port/ $(top_srcdir)/libgphoto2_port/po
else
pull-translations:
echo "Error: Cannot pull translations: Could not find rsync at configure time."
exit 1
endif
# Run "make update-po" in all po/ subdirs
.PHONY: update-po
update-po:
@for d in $(PO_SUBDIRS); do (cd "$$d" && $(MAKE) $(AM_MAKEFLAGS) update-po) || exit 1; done
@GP_GETTEXT_SETUP_MK@
# We need *some* `all-local` target (dummy or real) to force Automake
# to make the `all` target depend on it. In this case, print build
# flags for debugging purposes.
all-local:
@test -z "$(CFLAGS)" || printf " %s %-8s %s\n" env CFLAGS "$(CFLAGS)"
@test -z "$(CPPFLAGS)" || printf " %s %-8s %s\n" env CPPFLAGS "$(CPPFLAGS)"
@test -z "$(LDADD)" || printf " %s %-8s %s\n" env LDADD "$(LDADD)"
@test -z "$(LIBADD)" || printf " %s %-8s %s\n" env LIBADD "$(LIBADD)"
@test -z "$(LDFLAGS)" || printf " %s %-8s %s\n" env LDFLAGS "$(LDFLAGS)"
# Dummy target to force Automake to make the distclean target depend on it
distclean-local:
@:
########################################################################
# The following default options for aclocal and automake
# are required in the top level Makefile.am for the automatic
# re-building of the build system files.
ACLOCAL_AMFLAGS = -I auto-m4 -I libgphoto2_port/gphoto-m4
include libgphoto2_port/gphoto-m4/Makefile-files