diff options
Diffstat (limited to 'contrib/Makefile')
-rw-r--r-- | contrib/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/contrib/Makefile b/contrib/Makefile index 33baec42c..24d6ee243 100644 --- a/contrib/Makefile +++ b/contrib/Makefile @@ -5,8 +5,16 @@ SYSTEM = $(shell uname -s) # Special case for Mac OS X: everything is handled from the Xcode project
ifeq ($(SYSTEM),Darwin)
-all:
- ( echo "MacOs X doesn't use this makefile, to build the contrib please use ../jam" ; false )
+all: .contrib
+
+.contrib:
+ ( cd .. ; ./configure ; cd contrib ; cp -f ../config.jam . ; ../jam )
+
+clean:
+ ( echo "Do a make mrproper to remove the contrib libraries )
+
+mrproper:
+ (rm -rf lib ; rm -rf include )
endif
|