diff options
author | fape <fape88@gmail.com> | 2012-10-18 14:56:12 +0200 |
---|---|---|
committer | fape <fape88@gmail.com> | 2012-10-18 14:56:12 +0200 |
commit | a01198d6d7966c17d74c5e077c759762d613b6d1 (patch) | |
tree | 56f1d052070c5b4c2c52827570a1310c990b0412 /tools | |
parent | e530bbb8e367f44841704b6563e55c8e3dac8812 (diff) |
[droid] fix dependencies make clean and distclean
Diffstat (limited to 'tools')
-rw-r--r-- | tools/android/depends/libffi/Makefile | 4 | ||||
-rw-r--r-- | tools/android/depends/libsdl/Makefile | 2 | ||||
-rw-r--r-- | tools/android/depends/libssh/Makefile | 4 | ||||
-rw-r--r-- | tools/android/depends/rpl/Makefile | 2 | ||||
-rw-r--r-- | tools/android/depends/samba/Makefile | 2 | ||||
-rw-r--r-- | tools/android/depends/taglib/Makefile | 1 |
6 files changed, 9 insertions, 6 deletions
diff --git a/tools/android/depends/libffi/Makefile b/tools/android/depends/libffi/Makefile index 26a56e1f03..e4971389a8 100644 --- a/tools/android/depends/libffi/Makefile +++ b/tools/android/depends/libffi/Makefile @@ -33,7 +33,7 @@ $(LIBDYLIB): $(PLATFORM) clean: $(MAKE) -C $(PLATFORM) clean - rm -f .installed + rm -f .installed-$(PLATFORM) distclean:: - rm -rf $(PLATFORM) .installed + rm -rf $(PLATFORM) .installed-$(PLATFORM) diff --git a/tools/android/depends/libsdl/Makefile b/tools/android/depends/libsdl/Makefile index 4dab88b76c..660c0ed59b 100644 --- a/tools/android/depends/libsdl/Makefile +++ b/tools/android/depends/libsdl/Makefile @@ -37,7 +37,7 @@ $(LIBDYLIB): $(PLATFORM) clean: $(MAKE) -C $(PLATFORM) clean - rm -f .installed + rm -f .installed-$(PLATFORM) distclean:: rm -rf $(PLATFORM) .installed-$(PLATFORM) diff --git a/tools/android/depends/libssh/Makefile b/tools/android/depends/libssh/Makefile index 8848ef3af2..8402d9bafa 100644 --- a/tools/android/depends/libssh/Makefile +++ b/tools/android/depends/libssh/Makefile @@ -40,7 +40,7 @@ $(LIBDYLIB): $(PLATFORM) touch $@ clean: - rm -rf $(PLATFORM) .installed + rm -rf $(PLATFORM) .installed-$(PLATFORM) distclean:: - rm -rf $(PLATFORM) .installed + rm -rf $(PLATFORM) .installed-$(PLATFORM) diff --git a/tools/android/depends/rpl/Makefile b/tools/android/depends/rpl/Makefile index a401bb5757..21430c7cd0 100644 --- a/tools/android/depends/rpl/Makefile +++ b/tools/android/depends/rpl/Makefile @@ -10,5 +10,7 @@ all: .installed-$(PLATFORM) touch $@ clean: + rm -f .installed-$(PLATFORM) distclean:: + rm -f .installed-$(PLATFORM) diff --git a/tools/android/depends/samba/Makefile b/tools/android/depends/samba/Makefile index 29b53d2db9..ef208caf70 100644 --- a/tools/android/depends/samba/Makefile +++ b/tools/android/depends/samba/Makefile @@ -93,7 +93,7 @@ $(LIBDYLIB): $(PLATFORM) touch $@ clean: - $(MAKE) -C $(PLATFORM) clean + $(MAKE) -C $(PLATFORM)/source clean rm -f .installed-$(PLATFORM) distclean:: diff --git a/tools/android/depends/taglib/Makefile b/tools/android/depends/taglib/Makefile index 6508df166b..cbb8724105 100644 --- a/tools/android/depends/taglib/Makefile +++ b/tools/android/depends/taglib/Makefile @@ -37,6 +37,7 @@ $(LIBDYLIB): $(PLATFORM) clean: $(MAKE) -C $(PLATFORM)/build clean + rm -f .installed-$(PLATFORM) distclean:: rm -rf $(PLATFORM) .installed-$(PLATFORM) |