summaryrefslogtreecommitdiffstats
path: root/ipa-server/Makefile
diff options
context:
space:
mode:
authorKarl MacMillan <kmacmillan@mentalrootkit.com>2007-07-27 13:42:02 -0400
committerKarl MacMillan <kmacmillan@mentalrootkit.com>2007-07-27 13:42:02 -0400
commit9d5b946fdafa77b7aca360d2d1e8ce48980c559f (patch)
tree993e6ffc6ff823af3ffe91e1428a23bb992a2c0f /ipa-server/Makefile
parenta471ebe7517a04d67b788b3cfd59cb9aa451da0a (diff)
downloadfreeipa-9d5b946fdafa77b7aca360d2d1e8ce48980c559f.tar.gz
freeipa-9d5b946fdafa77b7aca360d2d1e8ce48980c559f.tar.xz
freeipa-9d5b946fdafa77b7aca360d2d1e8ce48980c559f.zip
Reorganized repo to reflect packaging.
Diffstat (limited to 'ipa-server/Makefile')
-rw-r--r--ipa-server/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/ipa-server/Makefile b/ipa-server/Makefile
new file mode 100644
index 000000000..1417a19db
--- /dev/null
+++ b/ipa-server/Makefile
@@ -0,0 +1,16 @@
+SUBDIRS=ipa-install
+
+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