summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2011-06-07 00:44:50 +0300
committerTor Lillqvist <tml@iki.fi>2011-06-07 00:44:50 +0300
commit7999a0c4e14c2c30e9f6758a347cc45721769179 (patch)
tree53d878ca2d25ef2332c823ecf35138636f48966b
parent1fc9f649427dbdb0cd58b0a8ac8ccc99388e8fe8 (diff)
Do nothing when cross-compiling in general, not just for iOS
-rw-r--r--icc/makefile.mk8
1 files changed, 4 insertions, 4 deletions
diff --git a/icc/makefile.mk b/icc/makefile.mk
index 14a803e..f9e0622 100644
--- a/icc/makefile.mk
+++ b/icc/makefile.mk
@@ -34,7 +34,10 @@ TARGET=icc
.INCLUDE : settings.mk
-.IF "$(OS)"!="IOS"
+.IF "$(CROSS_COMPILING)"=="YES"
+all:
+ @echo Nothing done when cross-compiling
+.ENDIF
# --- Files --------------------------------------------------------
@@ -58,8 +61,5 @@ BUILD_ACTION=dmake && cd Contrib$/CmdLine$/create_sRGB_profile && $(AUGMENT_LIB
.INCLUDE : set_ext.mk
-.ENDIF
.INCLUDE : target.mk
-.IF "$(OS)"!="IOS"
.INCLUDE : tg_ext.mk
-.ENDIF