mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Fix trailing spaces.
This commit is contained in:
parent
4dad7bd344
commit
1bdb3a8ba8
285
services/crypto/Makefile
Executable file → Normal file
285
services/crypto/Makefile
Executable file → Normal file
@ -21,7 +21,6 @@
|
||||
#
|
||||
# Contributor(s):
|
||||
# Dan Mills <thunder@mozilla.com> (original author)
|
||||
# Godwin Chan <godwinchan@hotmail.com> (Darwin Universal Binary)
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
@ -37,113 +36,9 @@
|
||||
#
|
||||
# ***** END LICENSE BLOCK *****
|
||||
|
||||
# OS detection
|
||||
|
||||
sys := $(shell uname -s)
|
||||
|
||||
ifeq ($(sys), Darwin)
|
||||
os = Darwin
|
||||
compiler = gcc3
|
||||
cxx = c++
|
||||
so = dylib
|
||||
cppflags += -dynamiclib -DDEBUG
|
||||
else
|
||||
ifeq ($(sys), Linux)
|
||||
os = Linux
|
||||
compiler = gcc3
|
||||
cxx = c++
|
||||
so = so
|
||||
cppflags += -shared
|
||||
else
|
||||
ifeq ($(sys), MINGW32_NT-6.0)
|
||||
os = WINNT
|
||||
compiler = msvc
|
||||
cxx = cl
|
||||
so = dll
|
||||
else
|
||||
ifeq ($(sys), MINGW32_NT-5.1)
|
||||
os = WINNT
|
||||
compiler = msvc
|
||||
cxx = cl
|
||||
so = dll
|
||||
else
|
||||
$(error Sorry, your os is unknown/unsupported: $(sys))
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
# Arch detection
|
||||
|
||||
machine := $(shell uname -m)
|
||||
|
||||
ifeq ($(machine), arm)
|
||||
arch = arm
|
||||
else
|
||||
ifeq ($(machine), i386)
|
||||
arch = x86
|
||||
else
|
||||
ifeq ($(machine), i586)
|
||||
arch = x86
|
||||
else
|
||||
ifeq ($(machine), i686)
|
||||
arch = x86
|
||||
else
|
||||
ifeq ($(machine), ppc)
|
||||
arch = ppc
|
||||
else
|
||||
ifeq ($(machine), Power Macintosh)
|
||||
arch = ppc
|
||||
else
|
||||
ifeq ($(machine), x86_64)
|
||||
arch = x86_64
|
||||
else
|
||||
$(error: Sorry, your architecture is unknown/unsupported: $(machine))
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
# Universal binary so no need for $(arch) for Darwin
|
||||
|
||||
ifeq ($(sys), Darwin)
|
||||
platform = $(os)
|
||||
else
|
||||
platform = $(os)_$(arch)-$(compiler)
|
||||
endif
|
||||
|
||||
###################################################################
|
||||
# Target and objects
|
||||
|
||||
ifeq ($(sys), Darwin)
|
||||
target = WeaveCrypto
|
||||
target_i386 = WeaveCrypto.i386
|
||||
target_ppc = WeaveCrypto.ppc
|
||||
so_target = $(target:=.$(so))
|
||||
so_target_i386 = $(target_i386:=.$(so))
|
||||
so_target_ppc = $(target_ppc:=.$(so))
|
||||
cpp_objects_i386 = $(cpp_sources:.cpp=.oi386)
|
||||
cpp_objects_ppc = $(cpp_sources:.cpp=.oppc)
|
||||
else
|
||||
target = WeaveCrypto
|
||||
so_target = $(target:=.$(so))
|
||||
cpp_objects = $(cpp_sources:.cpp=.o)
|
||||
endif
|
||||
|
||||
# source and path configurations
|
||||
idl = IWeaveCrypto.idl
|
||||
cpp_sources = WeaveCrypto.cpp WeaveCryptoModule.cpp
|
||||
stage_dir=../dist/stage
|
||||
|
||||
sdkdir ?= ${MOZSDKDIR}
|
||||
destdir = ..
|
||||
platformdir = $(destdir)/platform/$(platform)
|
||||
|
||||
xpidl = $(sdkdir)/bin/xpidl
|
||||
|
||||
# FIXME: we don't actually require this for e.g. clean
|
||||
ifeq ($(sdkdir),)
|
||||
$(warning No 'sdkdir' variable given)
|
||||
$(warning It should point to the location of the Gecko SDK)
|
||||
@ -152,177 +47,15 @@ ifeq ($(sdkdir),)
|
||||
$(error)
|
||||
endif
|
||||
|
||||
idl_headers = $(idl:.idl=.h)
|
||||
idl_typelib = $(idl:.idl=.xpt)
|
||||
cpp_objects = $(cpp_sources:.cpp=.o)
|
||||
so_target = $(target:=.$(so))
|
||||
all: build
|
||||
|
||||
headers = -I$(sdkdir)/include \
|
||||
-I$(sdkdir)/include/system_wrappers \
|
||||
-I$(sdkdir)/include/nss \
|
||||
-I$(sdkdir)/include/xpcom \
|
||||
-I$(sdkdir)/include/string \
|
||||
-I$(sdkdir)/include/pipnss \
|
||||
-I$(sdkdir)/include/nspr \
|
||||
-I$(sdkdir)/sdk/include
|
||||
.PHONY: build crypto rebuild_all
|
||||
|
||||
# libraries
|
||||
libdirs := $(sdkdir)/lib $(sdkdir)/bin
|
||||
libs := xpcomglue_s xpcom nspr4 \
|
||||
crmf smime3 ssl3 nss3 nssutil3 \
|
||||
plds4 plc4
|
||||
crypto:
|
||||
$(MAKE) -C src install
|
||||
|
||||
ifeq ($(os), linux)
|
||||
libs := xpcom_core $(libs)
|
||||
endif
|
||||
build:
|
||||
cp -R -v platform $(stage_dir)
|
||||
cp -R -v components $(stage_dir)
|
||||
|
||||
# compiler and Linker Flags
|
||||
|
||||
ifeq ($(os), Darwin)
|
||||
libdirs := $(patsubst %,-L%,$(libdirs))
|
||||
libs := $(patsubst %,-l%,$(libs))
|
||||
cppflags_i386 += -c -pipe -Os -arch i386 \
|
||||
-fPIC -fno-rtti -fno-exceptions -fno-strict-aliasing \
|
||||
-fno-common -fshort-wchar -fpascal-strings -pthread \
|
||||
-Wall -Wconversion -Wpointer-arith -Woverloaded-virtual -Wsynth \
|
||||
-Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align \
|
||||
-Wno-long-long \
|
||||
-include xpcom-config.h $(headers) \
|
||||
-isysroot /Developer/SDKs/MacOSX10.4u.sdk
|
||||
ldflags_i386 += -pthread -pipe -bundle -arch i386 \
|
||||
-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk \
|
||||
-Wl,-executable_path,$(sdkdir)/bin \
|
||||
-Wl,-dead_strip \
|
||||
-Wl,-exported_symbol \
|
||||
-Wl,_NSGetModule \
|
||||
$(libdirs) $(libs)
|
||||
cppflags_ppc += -c -pipe -Os -arch ppc \
|
||||
-fPIC -fno-rtti -fno-exceptions -fno-strict-aliasing \
|
||||
-fno-common -fshort-wchar -fpascal-strings -pthread \
|
||||
-Wall -Wconversion -Wpointer-arith -Woverloaded-virtual -Wsynth \
|
||||
-Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align \
|
||||
-Wno-long-long \
|
||||
-include xpcom-config.h $(headers) \
|
||||
-isysroot /Developer/SDKs/MacOSX10.4u.sdk \
|
||||
-force_cpusubtype_ALL
|
||||
ldflags_ppc += -pthread -pipe -bundle -arch ppc \
|
||||
-Wl,-syslibroot,/Developer/SDKs/MacOSX10.4u.sdk \
|
||||
-Wl,-executable_path,$(sdkdir)/bin \
|
||||
-Wl,-dead_strip \
|
||||
-Wl,-exported_symbol \
|
||||
-Wl,_NSGetModule \
|
||||
-force_cpusubtype_ALL \
|
||||
$(libdirs) $(libs)
|
||||
else
|
||||
ifeq ($(os), Linux)
|
||||
libdirs := $(patsubst %,-L%,$(libdirs))
|
||||
libs := $(patsubst %,-l%,$(libs))
|
||||
cppflags += -pipe -Os \
|
||||
-fPIC -fno-rtti -fno-exceptions -fno-strict-aliasing \
|
||||
-fno-common -pthread \
|
||||
-Wall -Wconversion -Wpointer-arith -Woverloaded-virtual -Wsynth \
|
||||
-Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wcast-align \
|
||||
-Wno-long-long \
|
||||
-include xpcom-config.h $(headers)
|
||||
ifneq ($(arch), arm)
|
||||
cppflags += -fshort-wchar
|
||||
else
|
||||
endif
|
||||
ldflags += -pthread -pipe -DMOZILLA_STRICT_API \
|
||||
-Wl,-dead_strip \
|
||||
-Wl,-exported_symbol \
|
||||
-Wl,-z,defs -Wl,-h,WeaveCrypto.so \
|
||||
-Wl,-rpath-link,$(sdkdir)/bin \
|
||||
$(sdkdir)/lib/libxpcomglue_s.a \
|
||||
$(libdirs) $(libs)
|
||||
else
|
||||
ifeq ($(os), WINNT)
|
||||
libdirs := $(patsubst %,-LIBPATH:%,$(libdirs))
|
||||
libs := $(patsubst %,$(sdkdir)/lib/%.lib,$(libs))
|
||||
cppflags += -c -nologo -O1 -GR- -TP -MT -Zc:wchar_t- -W3 -Gy $(headers) \
|
||||
-DNDEBUG -DTRIMMED -D_CRT_SECURE_NO_DEPRECATE=1 \
|
||||
-D_CRT_NONSTDC_NO_DEPRECATE=1 -DWINVER=0x500 -D_WIN32_WINNT=0x500 \
|
||||
-D_WIN32_IE=0x0500 -DX_DISPLAY_MISSING=1 -DMOZILLA_VERSION=\"1.9pre\" \
|
||||
-DMOZILLA_VERSION_U=1.9pre -DHAVE_SNPRINTF=1 -D_WINDOWS=1 -D_WIN32=1 \
|
||||
-DWIN32=1 -DXP_WIN=1 -DXP_WIN32=1 -DHW_THREADS=1 -DSTDC_HEADERS=1 \
|
||||
-DWIN32_LEAN_AND_MEAN=1 -DNO_X11=1 -DHAVE_MMINTRIN_H=1 \
|
||||
-DHAVE_OLEACC_IDL=1 -DHAVE_ATLBASE_H=1 -DHAVE_WPCAPI_H=1 -D_X86_=1 \
|
||||
-DD_INO=d_ino
|
||||
ldflags += -DLL -NOLOGO -SUBSYSTEM:WINDOWS -NXCOMPAT -SAFESEH -IMPLIB:fake.lib \
|
||||
$(libdirs) $(libs) \
|
||||
kernel32.lib user32.lib gdi32.lib winmm.lib wsock32.lib advapi32.lib
|
||||
rcflags := -r $(headers)
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
######################################################################
|
||||
|
||||
.PHONY: all build install clean subst
|
||||
|
||||
all: build # default target
|
||||
|
||||
build: subst $(so_target) $(idl_typelib)
|
||||
|
||||
install: build
|
||||
mkdir -p $(destdir)/components
|
||||
mkdir -p $(platformdir)/components
|
||||
cp $(idl_typelib) $(destdir)/components
|
||||
cp $(so_target) $(platformdir)/components
|
||||
|
||||
clean:
|
||||
rm -f $(so_target) $(so_target_i386) $(so_target_ppc) \
|
||||
$(cpp_objects) $(cpp_objects_i386) $(cpp_objects_ppc) \
|
||||
$(idl_typelib) $(idl_headers) $(target:=.res) fake.lib fake.exp WeaveCrypto.rc
|
||||
|
||||
subst:
|
||||
$(substitute) WeaveCrypto.rc.in > WeaveCrypto.rc
|
||||
|
||||
# rules to build the c headers and .xpt from idl
|
||||
$(idl_headers): $(idl)
|
||||
$(xpidl) -m header -I$(sdkdir)/idl $(@:.h=.idl)
|
||||
|
||||
$(idl_typelib): $(idl)
|
||||
$(xpidl) -m typelib -I$(sdkdir)/idl $(@:.xpt=.idl)
|
||||
|
||||
# build and link rules
|
||||
ifeq ($(os), Darwin)
|
||||
$(so_target): $(so_target_i386) $(so_target_ppc)
|
||||
lipo -create -output $(so_target) -arch ppc $(so_target_ppc) \
|
||||
-arch i386 $(so_target_i386)
|
||||
chmod +x $(so_target)
|
||||
|
||||
#i386
|
||||
$(cpp_objects_i386): $(cpp_sources)
|
||||
$(cxx) -o $@ $(cppflags_i386) $(@:.oi386=.cpp)
|
||||
|
||||
$(so_target_i386): $(idl_headers) $(cpp_objects_i386)
|
||||
$(cxx) -o $@ $(ldflags_i386) $(cpp_objects_i386)
|
||||
chmod +x $(so_target_i386)
|
||||
|
||||
#ppc
|
||||
$(cpp_objects_ppc): $(cpp_sources)
|
||||
$(cxx) -o $@ $(cppflags_ppc) $(@:.oppc=.cpp)
|
||||
|
||||
$(so_target_ppc): $(idl_headers) $(cpp_objects_ppc)
|
||||
$(cxx) -o $@ $(ldflags_ppc) $(cpp_objects_ppc)
|
||||
chmod +x $(so_target_ppc)
|
||||
else
|
||||
ifeq ($(os), Linux)
|
||||
$(so_target): $(idl_headers)
|
||||
$(cxx) $(cppflags) -o $@ $(cpp_sources) $(ldflags)
|
||||
chmod +x $@
|
||||
else
|
||||
ifeq ($(os), WINNT)
|
||||
$(target:=.res): $(target:=.rc)
|
||||
rc -Fo$@ $(rcflags) $(target:=.rc)
|
||||
|
||||
$(cpp_objects): $(cpp_sources)
|
||||
$(cxx) -Fo$@ -Fd$(@:.o=.pdb) $(cppflags) $(@:.o=.cpp)
|
||||
|
||||
$(so_target): $(idl_headers) $(cpp_objects) $(target:=.res)
|
||||
link -OUT:$@ -PDB:$(@:.dll=.pdb) $(cpp_objects) $(target:=.res) $(ldflags)
|
||||
chmod +x $@
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
rebuild_all: crypto build
|
||||
|
Loading…
Reference in New Issue
Block a user