summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-02-13 16:44:46 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-02-13 16:44:46 -0400
commit6ad33950b87eafc8a4048dd7b9352e888d25cf63 (patch)
treed786da441b86712bdba18823b8a9436125729b02
parentb196e5db2d1e5bb70406ff920fe9069f619e9c0d (diff)
fix make -C
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3241b1068..504a9e974 100644
--- a/Makefile
+++ b/Makefile
@@ -152,7 +152,7 @@ docs: $(mans)
clean:
rm -rf $(GIT_ANNEX_TMP_BUILD_DIR) $(bins) $(mans) test configure *.tix .hpc $(sources) \
doc/.ikiwiki html dist $(clibs) build-stamp tags
- $(MAKE) -f standalone/android clean
+ $(MAKE) -C standalone/android clean
sdist: clean $(mans)
./Build/make-sdist.sh
@@ -241,7 +241,7 @@ android:
ANDROIDAPP_DEST=$(GIT_ANNEX_TMP_BUILD_DIR)/git-annex.android
androidapp:
$(MAKE) android
- $(MAKE) -f standalone/android
+ $(MAKE) -C standalone/android
rm -rf "$(ANDROIDAPP_DEST)"