summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAdam Tkac <atkac@redhat.com>2009-03-30 13:16:58 +0200
committerMartin Nagy <mnagy@redhat.com>2009-03-30 15:13:29 +0200
commit1d9880f38526ea8e07457b08102b95ac50ab7d81 (patch)
tree71b42ca201b22e44c9bce3dca8cc7d83347200a7 /src
parenta148a9f5f2659c60a534f82d0ec8736f90afa223 (diff)
downloadldap_driver-1d9880f38526ea8e07457b08102b95ac50ab7d81.tar.gz
ldap_driver-1d9880f38526ea8e07457b08102b95ac50ab7d81.tar.xz
ldap_driver-1d9880f38526ea8e07457b08102b95ac50ab7d81.zip
Add configure.ac and Makefile.am.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.am15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/Makefile.am b/src/Makefile.am
new file mode 100644
index 0000000..19892e6
--- /dev/null
+++ b/src/Makefile.am
@@ -0,0 +1,15 @@
+lib_LTLIBRARIES = libdnsldap.la
+
+LIBMAJOR = 1
+LIBMINOR = 0
+
+HDRS = cache.h ldap_convert.h ldap_helper.h log.h rdlist.h semaphore.h \
+ settings.h str.h util.h zone_manager.h
+
+libdnsldap_la_SOURCES = $(HDRS) cache.c ldap_convert.c ldap_driver.c \
+ ldap_helper.c log.c rdlist.c semaphore.c settings.c str.c \
+ zone_manager.c
+
+libdnsldap_la_CFLAGS = -Wall -Wextra -pedantic -std=c99
+
+libdnsldap_la_LDFLAGS = -version-info $(LIBMAJOR):$(LIBMINOR):0