]> git.sur5r.net Git - glabels/blob - glabels2/qrencode-3.1.0/Makefile.am.dist
2009-09-22 Jim Evins <evins@snaught.com>
[glabels] / glabels2 / qrencode-3.1.0 / Makefile.am.dist
1 AUTOMAKE_OPTIONS = foreign
2
3 SUBDIRS = .
4
5 if BUILD_TESTS
6 SUBDIRS += tests
7 endif
8
9 lib_LTLIBRARIES = libqrencode.la
10
11 libqrencode_la_SOURCES = qrencode.c qrencode_inner.h \
12                                                  qrinput.c qrinput.h \
13                                                  bitstream.c bitstream.h \
14                                                  qrspec.c qrspec.h \
15                                                  rscode.c rscode.h \
16                                                  split.c split.h \
17                                                  mask.c mask.h
18
19 libqrencode_la_LDFLAGS = -version-number $(MAJOR_VERSION):$(MINOR_VERSION):$(MICRO_VERSION)
20
21 include_HEADERS = qrencode.h
22
23 pkgconfigdir = $(libdir)/pkgconfig
24 pkgconfig_DATA = libqrencode.pc
25
26 EXTRA_DIST = libqrencode.pc.in autogen.sh configure.ac acinclude.m4 \
27                          Makefile.am tests/Makefile.am qrencode.spec.in qrencode.spec \
28                          qrencode.1.in Doxyfile tests/test_all.sh
29
30 if BUILD_TOOLS
31 bin_PROGRAMS = qrencode
32 qrencode_SOURCES = qrenc.c
33 qrencode_CFLAGS = $(png_CFLAGS)
34 qrencode_LDADD = libqrencode.la $(png_LIBS)
35 man1_MANS = qrencode.1
36 endif