xref: /vim-8.2.3635/src/GvimExt/Make_ming.mak (revision cfbc5ee4)
1# Project: gvimext
2# Generates gvimext.dll with gcc.
3# Can be used for Cygwin and MingW (MingW ignores -mno-cygwin)
4#
5# Originally, the DLL base address was fixed: -Wl,--image-base=0x1C000000
6# Now it is allocated dymanically by the linker by evaluating all DLLs
7# already loaded in memory. The binary image contains as well information
8# for automatic pseudo-rebasing, if needed by the system. ALV 2004-02-29
9
10# If cross-compiling set this to yes, else set it to no
11CROSS = no
12#CROSS = yes
13# For the old MinGW 2.95 (the one you get e.g. with debian woody)
14# set the following variable to yes and check if the executables are
15# really named that way.
16# If you have a newer MinGW or you are using cygwin set it to no and
17# check also the executables
18MINGWOLD = no
19
20ifeq ($(CROSS),yes)
21ifeq ($(MINGWOLD),yes)
22CXX = i586-mingw32msvc-g++
23CXXFLAGS := -O2 -mno-cygwin -fvtable-thunks
24WINDRES = i586-mingw32msvc-windres
25else
26CXX = i386-mingw32msvc-g++
27CXXFLAGS := -O2 -mno-cygwin
28WINDRES = i386-mingw32msvc-windres
29endif
30else
31CXX := g++
32WINDRES := windres
33CXXFLAGS := -O2 -mno-cygwin
34endif
35LIBS :=  -luuid
36RES  := gvimext.res
37DEFFILE = gvimext_ming.def
38OBJ  := gvimext.o
39
40DLL  := gvimext.dll
41
42.PHONY: all all-before all-after clean clean-custom
43
44all: all-before $(DLL) all-after
45
46$(DLL): $(OBJ) $(RES) $(DEFFILE)
47	$(CXX) -shared $(CXXFLAGS) -s -o $@ \
48		-Wl,--enable-auto-image-base \
49		-Wl,--enable-auto-import \
50		-Wl,--whole-archive \
51			$^ \
52		-Wl,--no-whole-archive \
53			$(LIBS)
54
55gvimext.o: gvimext.cpp
56	$(CXX) $(CXXFLAGS) -DFEAT_GETTEXT -c $? -o $@
57
58$(RES): gvimext_ming.rc
59	$(WINDRES) --input-format=rc --output-format=coff -DMING $? -o $@
60
61clean: clean-custom
62	$(RM)  $(OBJ) $(RES) $(DLL)
63
64