diff options
| author | Karl MacMillan <kmacmillan@mentalrootkit.com> | 2007-08-10 07:09:16 -0400 |
|---|---|---|
| committer | Karl MacMillan <kmacmillan@mentalrootkit.com> | 2007-08-10 07:09:16 -0400 |
| commit | 88a1ab65ce61bd94af0560980194d44affea45fb (patch) | |
| tree | e3fb46756dca7959129b63eae62bdda5c8eee8a5 /ipa-server/ipa-slapi-plugins/Makefile | |
| parent | a3e786e22ec9d4b0e7d2ef982ac045a29477433e (diff) | |
Updates to build kpaswd and the slapi plugins.
Diffstat (limited to 'ipa-server/ipa-slapi-plugins/Makefile')
| -rw-r--r-- | ipa-server/ipa-slapi-plugins/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ipa-server/ipa-slapi-plugins/Makefile b/ipa-server/ipa-slapi-plugins/Makefile new file mode 100644 index 000000000..95ed26c65 --- /dev/null +++ b/ipa-server/ipa-slapi-plugins/Makefile @@ -0,0 +1,17 @@ +SUBDIRS=ipa-pwd-extop + +all: + @for subdir in $(SUBDIRS); do \ + (cd $$subdir && $(MAKE) $@) || exit 1; \ + done + +install: + @for subdir in $(SUBDIRS); do \ + (cd $$subdir && $(MAKE) $@) || exit 1; \ + done + +clean: + @for subdir in $(SUBDIRS); do \ + (cd $$subdir && $(MAKE) $@) || exit 1; \ + done + rm -f *~ |
