summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
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 $@