diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-06-04 14:51:55 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-06-04 19:08:33 +0300 |
commit | 6465f4e8dd72990f550fd0a63342325fb0d4e026 (patch) | |
tree | 48bd0301bdeb1bc971138b9c2e68281654ae0664 /soltools/javadep | |
parent | 5edd3ce9a8cc997781c345c92cea9ce0227754ca (diff) |
Rehash cross-compilation ideas
Drop the TARGETPLATFORM=BUILD indication of stuff that is to be built
for the build platform but pointless to build for the host platform. I
will handle the split of stuff built for the build or host platforms
differently. Note that some libraries need to be built for both
platforms.
Add explicit rules to do nothing for the cross-compilation case, but
likely even that will be unnecessary in the case of complete modules
like soltools (?). I will just mark modules that are for the build
platform only with an own flag in BUILD_TYPE.
Diffstat (limited to 'soltools/javadep')
-rw-r--r-- | soltools/javadep/makefile.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/soltools/javadep/makefile.mk b/soltools/javadep/makefile.mk index 4e43c5c5c559..e6dcf32350f2 100644 --- a/soltools/javadep/makefile.mk +++ b/soltools/javadep/makefile.mk @@ -30,7 +30,6 @@ PRJ=.. PRJNAME=soltools TARGET=javadep TARGETTYPE=CUI -TARGETPLATFORM=BUILD NO_DEFAULT_STL=TRUE # --- Settings ----------------------------------------------------- @@ -38,6 +37,11 @@ NO_DEFAULT_STL=TRUE .INCLUDE : $(PRJ)$/util$/makefile.pmk .INCLUDE : settings.mk +.IF "$(CROSS_COMPILING)"=="YES" +all: + @echo Nothing done when cross-compiling +.ENDIF + UWINAPILIB=$(0) LIBSALCPPRT=$(0) |