diff options
| author | Karl MacMillan <kmacmillan@mentalrootkit.com> | 2007-08-10 08:15:23 -0400 |
|---|---|---|
| committer | Karl MacMillan <kmacmillan@mentalrootkit.com> | 2007-08-10 08:15:23 -0400 |
| commit | 0144922fd70834184501e06c37464b63f3db87e2 (patch) | |
| tree | 6123f91879b14aec9adc8df5f5756436ca53aaeb /ipa-server/ipa-slapi-plugins/Makefile | |
| parent | b3aba86b2eaa29dbb79b04f182b460dd31eb52aa (diff) | |
| parent | 0d981af82098f14e5b9e1677be80f6553f90417d (diff) | |
Merge from bundle.
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 *~ |
