-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathMakefile.am
More file actions
40 lines (33 loc) · 813 Bytes
/
Makefile.am
File metadata and controls
40 lines (33 loc) · 813 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
# Packaging commands (all run from dmtx-utils root):
# $ make distclean
# $ make dist-bzip2
# $ make dist-gzip
ACLOCAL_AMFLAGS = -I m4
AM_CPPFLAGS = -Wshadow -Wall -pedantic -ansi
if ENABLE_DMTXQUERY
DMTXQUERY_DIR = dmtxquery
endif
if ENABLE_DMTXREAD
DMTXREAD_DIR = dmtxread
endif
if ENABLE_DMTXWRITE
DMTXWRITE_DIR = dmtxwrite
endif
SUBDIRS = . $(DMTXQUERY_DIR) $(DMTXREAD_DIR) $(DMTXWRITE_DIR)
dist_man_MANS = man/dmtxread.1 man/dmtxwrite.1 man/dmtxquery.1
EXTRA_DIST = KNOWNBUG \
README.cygwin \
README.freebsd \
README.linux \
README.mingw \
README.osx \
README.unix \
m4 \
script/check_all.sh \
script/check_comments.sh \
script/check_copyright.sh \
script/check_headers.pl \
script/check_license.sh \
script/check_spacing.sh \
script/check_todo.sh \
script/check_whitespace.sh