diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-03-06 15:55:30 +0100 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2008-03-06 15:55:30 +0100 |
commit | abc0f3b7fc0332dee5382f165d9531d05ddf41b6 (patch) | |
tree | 3f2e879b9d28925483cf195282f6e1226779aa1d /Objective-C | |
parent | 396e27e3fa7e3b30347f9102e0bd30b2965ef1f4 (diff) |
Build system: Fix a long-standing bug that made make too verbose.
darcs-hash:19524a6da40b1471d6cbd9b95a62eda6dc9ef7fc
Diffstat (limited to 'Objective-C')
-rw-r--r-- | Objective-C/GNUmakefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objective-C/GNUmakefile b/Objective-C/GNUmakefile index 34ae748..c3f64af 100644 --- a/Objective-C/GNUmakefile +++ b/Objective-C/GNUmakefile @@ -77,7 +77,7 @@ obj/libobjcl.dylib: $(FFI_DEPS) obj/libobjcl.dylib.$(VERSION) ln -s -f libobjcl.dylib.$(VERSION) $@ obj/libobjcl.dylib.$(VERSION): $(libobjcl_OBJ_FILES) - make -p obj + mkdir -p $(CURDIR)/obj gcc -dynamiclib -current_version $(VERSION) -flat_namespace -undefined warning -install_name $(CURDIR)/obj/libobjcl.dylib.$(VERSION) -o $@ $(libobjcl_OBJ_FILES) -fnext-runtime -framework AppKit -framework Foundation -lm $(ADDITIONAL_LDFLAGS) $(ADDITIONAL_OBJCFLAGS) obj/%.o: %.m |