diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-06-07 00:44:50 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-06-07 00:44:50 +0300 |
commit | 67c4e5f330696f2ceedc57e69bac4c370be09a66 (patch) | |
tree | b0c2367342721830c72769412c16562c704cc49b /icc | |
parent | bd2673ba5c06fc3ddf1073d59b4c5d1e3daea886 (diff) |
Do nothing when cross-compiling in general, not just for iOS
Diffstat (limited to 'icc')
-rw-r--r-- | icc/makefile.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/icc/makefile.mk b/icc/makefile.mk index 14a803ed122d..f9e0622b2629 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 |