summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-slapi-plugins/dna/Makefile
diff options
context:
space:
mode:
authorKarl MacMillan <kmacmill@redhat.com>2007-10-17 15:40:55 -0400
committerKarl MacMillan <kmacmill@redhat.com>2007-10-17 15:40:55 -0400
commitf8fba3b7ddbfbb8eb33faab1df3e024a30986b3e (patch)
tree7d79dd620858f31623f4e4e90edc06e37b0be762 /ipa-server/ipa-slapi-plugins/dna/Makefile
parentbc52446074fb6013d1f06f1bb579e2cbfcb896b2 (diff)
Autotool ipa-server - patch from William Jon McCann <mccann@jhu.edu>.
Diffstat (limited to 'ipa-server/ipa-slapi-plugins/dna/Makefile')
-rw-r--r--ipa-server/ipa-slapi-plugins/dna/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/ipa-server/ipa-slapi-plugins/dna/Makefile b/ipa-server/ipa-slapi-plugins/dna/Makefile
deleted file mode 100644
index 1e37d7793..000000000
--- a/ipa-server/ipa-slapi-plugins/dna/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-include ../../Makefile.common
-
-SONAME = libipa-dna-plugin.so
-LDFLAGS += -llber
-CFLAGS += -I/usr/include/$(DIRSRV) -I/usr/include/nss3 -I/usr/include/mozldap -I/usr/include/nspr4 -fPIC -DPIC
-
-OBJS = $(patsubst %.c,%.o,$(wildcard *.c))
-
-all: $(OBJS)
- $(CC) $(LDFLAGS) $(OBJS) -Wl,-soname -Wl,$(SONAME) -shared -o $(SONAME)
-
-%.o: %.c
- $(CC) $(CFLAGS) -c -o $@ $<
-
-install:
- mkdir -p $(PLUGINDIR); \
- install -m 644 $(SONAME) $(PLUGINDIR); \
- install -m 644 *.ldif $(SHAREDIR)
-
-clean:
- rm -f *.o
- rm -f $(SONAME)
- rm -f *~
-
-