Advertisement
Guest User

Untitled

a guest
May 24th, 2016
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. diff --git a/Makefile b/Makefile
  2. index 1c51739..aa34c01 100644
  3. --- a/Makefile
  4. +++ b/Makefile
  5. @@ -3,6 +3,12 @@ CONFIGURATION = Debug
  6. MSBUILD = xbuild /p:Configuration=$(CONFIGURATION) $(MSBUILD_ARGS)
  7. RUNTIME := $(shell if [ -f `which mono64` ] ; then echo mono64 ; else echo mono; fi) --debug=casts
  8.  
  9. +LIB_MANDROID_PROJECTS = \
  10. + external/Java.Interop/tools/class-parse/class-parse.csproj \
  11. + external/Java.Interop/tools/generator/generator.csproj \
  12. + external/Java.Interop/tools/logcat-parse/logcat-parse.csproj
  13. +
  14. +
  15. NUNIT_TESTS = \
  16. bin/Test$(CONFIGURATION)/Xamarin.Android.Build.Tests.dll
  17.  
  18. @@ -19,6 +25,7 @@ endif
  19.  
  20. all:
  21. $(MSBUILD)
  22. + $(foreach p,$(LIB_MANDROID_PROJECTS), $(MSBUILD) $(p) /p:OutputPath=`pwd`/bin/$(CONFIGURATION)/lib/mandroid ;)
  23.  
  24. prepare:
  25. git submodule update --init --recursive
  26. diff --git a/external/Java.Interop b/external/Java.Interop
  27. --- a/external/Java.Interop
  28. +++ b/external/Java.Interop
  29. @@ -1 +1 @@
  30. -Subproject commit a9312d2607c87a301e05db7fe2243200d2557666
  31. +Subproject commit a9312d2607c87a301e05db7fe2243200d2557666-dirty
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement