summaryrefslogtreecommitdiff
blob: b632c28e9b2567acb675d9f301457d8e6fc924d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
--- Makefile.orig	1970-01-01 00:00:00.000000000 +0000
+++ Makefile	2005-01-26 20:30:27.009331696 +0000
@@ -0,0 +1,29 @@
+
+CC=gcc
+CFLAGS=$(shell /usr/bin/asterisk-config --cflags) -fPIC -DPIC
+SOLINK=$(shell /usr/bin/asterisk-config --solink)
+LIBS=-lssl -lcrypto -ldl -lresolv -llber -lldap
+
+ASTMODDIR=$(shell /usr/bin/asterisk-config --modulesdir)
+ASTETCDIR=$(shell /usr/bin/asterisk-config --sysconfdir)
+
+all: .depend app_ldap.so
+
+.depend:
+	@if [ ! -x /usr/bin/asterisk-config ]; then \
+		echo "/usr/bin/asterisk-config not found!"; \
+		exit 255; \
+	fi
+
+.c.o:
+	$(CC) -c $(CFLAGS) -o $@ $<
+
+app_ldap.so: app_ldap.o
+	$(CC) $(SOLINK) $(LIBS) -o $@
+
+install:
+	if [ ! -d $(DESTDIR)$(ASTMODDIR) ]; then mkdir -p $(DESTDIR)$(ASTMODDIR); fi
+	install -m755 app_ldap.so $(DESTDIR)$(ASTMODDIR)
+	if [ ! -d $(DESTDIR)$(ASTETCDIR) ]; then mkdir -p $(DESTDIR)$(ASTETCDIR); fi
+	install -m644 ldap.conf $(DESTDIR)$(ASTETCDIR)
+