X-Git-Url: http://git.datanom.net/vcard-parser.git/blobdiff_plain/4a29ae6b03575f6433f39e91e4162c787be7f6e1..HEAD:/src/Makefile.am?ds=sidebyside diff --git a/src/Makefile.am b/src/Makefile.am index b1191dc..157805a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,25 +1,29 @@ AUTOMAKE_OPTIONS = gnu -AM_CPPFLAGS = \ +libvCard_la_CPPFLAGS = \ + -I$(top_builddir) \ + -I $(top_srcdir) \ + @GLIB_CFLAGS@ \ + $(AM_CPPFLAGS) + +libvCard_la_CFLAGS = \ @GLIB_CFLAGS@ \ - -I $(top_srcdir) + $(AM_CFLAGS) -lib_LTLIBRARIES = libvcard.la +lib_LTLIBRARIES = libvCard.la -libvcard_la_SOURCES = \ - vcard.c +libvCard_la_SOURCES = \ + vcard.c \ + vcard-parser.h \ + vcard-parser.c -libvcard_la_LDFLAGS = \ +libvCard_la_LDFLAGS = \ -version-info @LIB_VERSION@ + include_HEADERS = \ - vcard.h + vcard.h \ + globals.h -libvcard_la_LIBADD = \ +libvCard_la_LIBADD = \ @GLIB_LIBS@ -if BUILD_EXAMPLE -bin_PROGRAMS = vcard-example -vcard_example_SOURCES = vcard-example.c -vcard_example_LDADD = libvcard.la -endif -