diff options
author | Luboš Luňák <l.lunak@collabora.com> | 2019-02-18 15:02:29 +0100 |
---|---|---|
committer | Luboš Luňák <l.lunak@collabora.com> | 2019-02-18 17:10:17 +0100 |
commit | af8deb6b21b4e6888267c7fe385a102e2e7eba77 (patch) | |
tree | d8d53e6914cd87720043a17a596c051a8f816922 /compilerplugins/Makefile-clang.mk | |
parent | 023b6dbdad18901fd6cecdf3516953c10fbfcf4b (diff) |
make uninteresting code in clang's makefile to the uninteresting part
Change-Id: I235284c7198aa2a295b4d81ff2f8e9ca554a4174
Reviewed-on: https://gerrit.libreoffice.org/67971
Tested-by: Jenkins
Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'compilerplugins/Makefile-clang.mk')
-rw-r--r-- | compilerplugins/Makefile-clang.mk | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/compilerplugins/Makefile-clang.mk b/compilerplugins/Makefile-clang.mk index aad53a90ca5c..91a811a74eda 100644 --- a/compilerplugins/Makefile-clang.mk +++ b/compilerplugins/Makefile-clang.mk @@ -8,16 +8,6 @@ # Make sure variables in this Makefile do not conflict with other variables (e.g. from gbuild). -CLANG_COMMA :=, - -ifeq ($(OS),WNT) -CLANG_DL_EXT = .dll -CLANG_EXE_EXT = .exe -else -CLANG_DL_EXT = .so -CLANG_EXE_EXT = -endif - # Compile flags ('make CLANGCXXFLAGS=-g' if you need to debug the plugin); you # may occasionally want to override these: ifeq ($(OS),WNT) @@ -34,6 +24,16 @@ endif # The uninteresting rest. +CLANG_COMMA :=, + +ifeq ($(OS),WNT) +CLANG_DL_EXT = .dll +CLANG_EXE_EXT = .exe +else +CLANG_DL_EXT = .so +CLANG_EXE_EXT = +endif + # Clang headers require these. CLANGDEFS=-D__STDC_CONSTANT_MACROS -D__STDC_FORMAT_MACROS -D__STDC_LIMIT_MACROS ifneq ($(OS),WNT) |