forked from fukuchi/libqrencode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.am
41 lines (32 loc) · 969 Bytes
/
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
AUTOMAKE_OPTIONS = foreign
ACLOCAL_AMFLAGS=-I m4
SUBDIRS = .
if BUILD_TESTS
SUBDIRS += tests
endif
lib_LTLIBRARIES = libqrencode.la
libqrencode_la_SOURCES = qrencode.c qrencode_inner.h \
qrinput.c qrinput.h \
bitstream.c bitstream.h \
qrspec.c qrspec.h \
rsecc.c rsecc.h \
split.c split.h \
mask.c mask.h \
mqrspec.c mqrspec.h \
mmask.c mmask.h
libqrencode_la_LDFLAGS = -version-number $(MAJOR_VERSION):$(MINOR_VERSION):$(MICRO_VERSION)
include_HEADERS = qrencode.h
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libqrencode.pc
EXTRA_DIST = libqrencode.pc.in autogen.sh configure.ac acinclude.m4 \
Makefile.am tests/Makefile.am qrencode.spec.in qrencode.spec \
qrencode.1.in Doxyfile tests/test_all.sh
if BUILD_TOOLS
if HAVE_PNG
bin_PROGRAMS = qrencode
qrencode_SOURCES = qrenc.c
qrencode_CFLAGS = $(png_CFLAGS)
qrencode_LDADD = libqrencode.la $(png_LIBS)
man1_MANS = qrencode.1
endif
endif