]> git.datanom.net - vcard-parser.git/blob - src/Makefile.am
initialize
[vcard-parser.git] / src / Makefile.am
1 AUTOMAKE_OPTIONS = gnu
2
3 AM_CPPFLAGS = \
4 @GLIB_CFLAGS@ \
5 -I $(top_srcdir)
6
7 lib_LTLIBRARIES = libvcard.la
8
9 libvcard_la_SOURCES = \
10 vcard.c
11
12 libvcard_la_LDFLAGS = \
13 -version-info @LIB_VERSION@
14 include_HEADERS = \
15 vcard.h
16
17 libvcard_la_LIBADD = \
18 @GLIB_LIBS@
19
20 if BUILD_EXAMPLE
21 bin_PROGRAMS = vcard-example
22 vcard_example_SOURCES = vcard-example.c
23 vcard_example_LDADD = libvcard.la
24 endif
25
This page took 0.062561 seconds and 6 git commands to generate.