diff options
author | Joey Hess <joey@kitenet.net> | 2013-02-13 16:44:46 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-02-13 16:44:46 -0400 |
commit | 6ad33950b87eafc8a4048dd7b9352e888d25cf63 (patch) | |
tree | d786da441b86712bdba18823b8a9436125729b02 | |
parent | b196e5db2d1e5bb70406ff920fe9069f619e9c0d (diff) |
fix make -C
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)" |