summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMartin Nagy <mnagy@redhat.com>2009-03-30 13:01:56 +0200
committerMartin Nagy <mnagy@redhat.com>2009-03-30 13:08:32 +0200
commita148a9f5f2659c60a534f82d0ec8736f90afa223 (patch)
tree2244198110d012ec0afa16a1a3eee64ee4057061 /Makefile
parentdd3b35c40b5709f8ea3ded23d4bb5fb4a9320352 (diff)
downloadldap_driver-a148a9f5f2659c60a534f82d0ec8736f90afa223.tar.gz
ldap_driver-a148a9f5f2659c60a534f82d0ec8736f90afa223.tar.xz
ldap_driver-a148a9f5f2659c60a534f82d0ec8736f90afa223.zip
Prepare the tree for conversion to autoconf.
All source files are now moved to src/ and the old Makefile is removed.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 0 insertions, 20 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index ceb4bcf..0000000
--- a/Makefile
+++ /dev/null
@@ -1,20 +0,0 @@
-.PHONY: all clean
-
-LIBMAJOR = 1
-LIBMINOR = 0
-
-LIBNAME = libdnsldap.so.$(LIBMAJOR).$(LIBMINOR).0
-LIBSONAME = libdnsldap.so.$(LIBMAJOR)
-OBJS = cache.o ldap_driver.o semaphore.o ldap_convert.o ldap_helper.o log.o
-OBJS += rdlist.o settings.o str.o zone_manager.o
-
-CFLAGS := -Wall -Wextra -pedantic -std=c99 -g -fPIC $(CFLAGS)
-
-
-all: $(LIBNAME)
-
-clean:
- rm -f $(LIBNAME) *.o
-
-$(LIBNAME): $(OBJS)
- $(CC) -ldns -lldap -shared -Wl,-soname,$(LIBSONAME) $+ -o $@