From 07487203b0091188dd2e3cff354b87cee2bad5aa Mon Sep 17 00:00:00 2001 From: Bill Holmes Date: Fri, 20 Nov 2015 22:25:52 -0500 Subject: [PATCH] Adding PHONY target for ios and android in native build. --- native-builds/Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/native-builds/Makefile b/native-builds/Makefile index 9fb329df..a150fda8 100644 --- a/native-builds/Makefile +++ b/native-builds/Makefile @@ -6,7 +6,11 @@ DEPOT_TOOLS_TAG=3add4b62b8fc420ba5a6cc0c8bddcf152c00a970 NATIVE_SKIA_ROOT=../skia -all: ios/libskia_core.a +all: ios + +ios: ios/libskia_core.a + + ios/libskia_core.a: depot_tools/README mkdir -p ios/i386 @@ -49,4 +53,6 @@ depot_tools/README: touch $@ clean : - rm -rf depot_tools ios \ No newline at end of file + rm -rf depot_tools ios + +.PHONY: all clean ios android \ No newline at end of file