summaryrefslogtreecommitdiffstats
path: root/src/.svn/text-base/Makefile.am.svn-base
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-16 16:09:16 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-16 16:09:16 -0600
commit4462592a15abe78aac66fe7edbf7ed409adb27f5 (patch)
tree175743f295c5503970a3155a5d3332f9c8df7b2d /src/.svn/text-base/Makefile.am.svn-base
downloadlibcaldav-4462592a15abe78aac66fe7edbf7ed409adb27f5.tar.gz
libcaldav-4462592a15abe78aac66fe7edbf7ed409adb27f5.zip
Initial import
Diffstat (limited to 'src/.svn/text-base/Makefile.am.svn-base')
-rw-r--r--src/.svn/text-base/Makefile.am.svn-base53
1 files changed, 53 insertions, 0 deletions
diff --git a/src/.svn/text-base/Makefile.am.svn-base b/src/.svn/text-base/Makefile.am.svn-base
new file mode 100644
index 0000000..59d3126
--- /dev/null
+++ b/src/.svn/text-base/Makefile.am.svn-base
@@ -0,0 +1,53 @@
+AUTOMAKE_OPTIONS = gnu
+
+INCLUDES = @CURL_CFLAGS@ @GLIB_CFLAGS@ \
+ -I$(top_srcdir) -I$(top_builddir)
+
+if STATIC_LINK
+noinst_LTLIBRARIES = libcaldav.la
+endif
+
+if DYNAMIC_LINK
+lib_LTLIBRARIES = libcaldav.la
+endif
+
+libcaldav_la_LDFLAGS = -version-info @LIBVERSION@
+
+libcaldav_la_SOURCES = \
+ caldav.h \
+ caldav.c \
+ add-caldav-object.c \
+ add-caldav-object.h \
+ delete-caldav-object.c \
+ delete-caldav-object.h \
+ modify-caldav-object.c \
+ modify-caldav-object.h \
+ get-caldav-report.c \
+ get-caldav-report.h \
+ get-display-name.c \
+ get-display-name.h \
+ caldav-utils.c \
+ caldav-utils.h \
+ md5.c \
+ md5.h \
+ options-caldav-server.c \
+ options-caldav-server.h \
+ lock-caldav-object.c \
+ lock-caldav-object.h \
+ get-freebusy-report.c \
+ get-freebusy-report.h
+
+libcaldav_includedir=$(includedir)/libcaldav-@VERSION@
+libcaldav_include_HEADERS = caldav.h
+
+noinst_HEADERS = \
+ add-caldav-object.h \
+ delete-caldav-object.h \
+ modify-caldav-object.h \
+ get-caldav-report.h \
+ caldav-utils.h
+
+libcaldav_la_LIBADD = \
+ @CURL_LIBS@ \
+ @GLIB_LIBS@
+