Skip to content

Commit

Permalink
[droid] fix dependencies make clean and distclean
Browse files Browse the repository at this point in the history
  • Loading branch information
fape committed Oct 18, 2012
1 parent e530bbb commit a01198d
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions tools/android/depends/libffi/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion tools/android/depends/libsdl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $(LIBDYLIB): $(PLATFORM)

clean:
$(MAKE) -C $(PLATFORM) clean
rm -f .installed
rm -f .installed-$(PLATFORM)

distclean::
rm -rf $(PLATFORM) .installed-$(PLATFORM)
4 changes: 2 additions & 2 deletions tools/android/depends/libssh/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 2 additions & 0 deletions tools/android/depends/rpl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,7 @@ all: .installed-$(PLATFORM)
touch $@

clean:
rm -f .installed-$(PLATFORM)

distclean::
rm -f .installed-$(PLATFORM)
2 changes: 1 addition & 1 deletion tools/android/depends/samba/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ $(LIBDYLIB): $(PLATFORM)
touch $@

clean:
$(MAKE) -C $(PLATFORM) clean
$(MAKE) -C $(PLATFORM)/source clean
rm -f .installed-$(PLATFORM)

distclean::
Expand Down
1 change: 1 addition & 0 deletions tools/android/depends/taglib/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ $(LIBDYLIB): $(PLATFORM)

clean:
$(MAKE) -C $(PLATFORM)/build clean
rm -f .installed-$(PLATFORM)

distclean::
rm -rf $(PLATFORM) .installed-$(PLATFORM)

0 comments on commit a01198d

Please sign in to comment.