summaryrefslogtreecommitdiffstats
path: root/ipa-server/ipa-slapi-plugins/ipa-pwd-extop/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'ipa-server/ipa-slapi-plugins/ipa-pwd-extop/Makefile')
-rw-r--r--ipa-server/ipa-slapi-plugins/ipa-pwd-extop/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/ipa-server/ipa-slapi-plugins/ipa-pwd-extop/Makefile b/ipa-server/ipa-slapi-plugins/ipa-pwd-extop/Makefile
deleted file mode 100644
index 034b8e60b..000000000
--- a/ipa-server/ipa-slapi-plugins/ipa-pwd-extop/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-include ../../Makefile.common
-
-SONAME = libipa_pwd_extop.so
-LDFLAGS += -lkrb5 -llber -lldap -llber -lssl
-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 *~
-
-