diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-11-25 23:51:33 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-11-26 00:23:45 +0200 |
commit | c7524e944120a7f1c0da3056f97c84643f85bbd2 (patch) | |
tree | 9a1877789d8fe4425b12eccc8a2cf7b6ff4c9cc4 /shell/source/unix | |
parent | 474dcc8fc9c4e7b2469e89b112f5bed4066cf969 (diff) |
Bypass more stuff on non-desktop OSes and enforce "lib" prefix for Android
Diffstat (limited to 'shell/source/unix')
-rw-r--r-- | shell/source/unix/exec/makefile.mk | 5 | ||||
-rw-r--r-- | shell/source/unix/misc/makefile.mk | 5 | ||||
-rw-r--r-- | shell/source/unix/sysshell/makefile.mk | 5 |
3 files changed, 15 insertions, 0 deletions
diff --git a/shell/source/unix/exec/makefile.mk b/shell/source/unix/exec/makefile.mk index 4f07341f4dde..07b312545288 100644 --- a/shell/source/unix/exec/makefile.mk +++ b/shell/source/unix/exec/makefile.mk @@ -40,6 +40,11 @@ TESTAPP1=urltest .INCLUDE : settings.mk +.IF "$(BUILD_TYPE)" == "$(BUILD_TYPE:s/DESKTOP//)" +ALL: + @echo Nothing done for non-desktop OSes +.ENDIF + # --- Files -------------------------------------------------------- DLLPRE= diff --git a/shell/source/unix/misc/makefile.mk b/shell/source/unix/misc/makefile.mk index 840f37295522..cb1a98622160 100644 --- a/shell/source/unix/misc/makefile.mk +++ b/shell/source/unix/misc/makefile.mk @@ -38,6 +38,11 @@ LIBSALCPPRT=$(0) .INCLUDE : settings.mk +.IF "$(BUILD_TYPE)" == "$(BUILD_TYPE:s/DESKTOP//)" +ALL: + @echo Nothing done for non-desktop OSes +.ENDIF + # --- Files -------------------------------------------------------- SCRIPTFILES = \ diff --git a/shell/source/unix/sysshell/makefile.mk b/shell/source/unix/sysshell/makefile.mk index 0c9f942d4d6a..6e9558ab1346 100644 --- a/shell/source/unix/sysshell/makefile.mk +++ b/shell/source/unix/sysshell/makefile.mk @@ -37,6 +37,11 @@ VISIBILITY_HIDDEN = TRUE .INCLUDE : settings.mk +.IF "$(BUILD_TYPE)" == "$(BUILD_TYPE:s/DESKTOP//)" +ALL: + @echo Nothing done for non-desktop OSes +.ENDIF + .IF "$(SYSTEM_EXPAT)" == "YES" CFLAGS+=-DSYSTEM_EXPAT .ENDIF |