blob: 80a2a65d99f301a89ccaab51b23bd8d1023ad98c [file] [log] [blame]
Bram Moolenaar946c1ee2011-10-03 22:12:32 +02001# Project: gvimext
2# Generates gvimext.dll with gcc.
3# To be used with 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
20# Link against the shared versions of libgcc/libstdc++ by default. Set
21# STATIC_STDCPLUS to "yes" to link against static versions instead.
22STATIC_STDCPLUS=no
23#STATIC_STDCPLUS=yes
24
25# Note: -static-libstdc++ is not available until gcc 4.5.x.
26LDFLAGS += -shared
27ifeq (yes, $(STATIC_STDCPLUS))
28LDFLAGS += -static-libgcc -static-libstdc++
29endif
30
31ifeq ($(CROSS),yes)
32DEL = rm
33ifeq ($(MINGWOLD),yes)
34CXXFLAGS := -O2 -mno-cygwin -fvtable-thunks
35else
36CXXFLAGS := -O2 -mno-cygwin
37endif
38else
39CXXFLAGS := -O2 -mno-cygwin
40ifneq (sh.exe, $(SHELL))
41DEL = rm
42else
43DEL = del
44endif
45endif
46CXX := $(CROSS_COMPILE)g++
47WINDRES := $(CROSS_COMPILE)windres
48WINDRES_CXX = $(CXX)
49WINDRES_FLAGS = --preprocessor="$(WINDRES_CXX) -E -xc" -DRC_INVOKED
50LIBS := -luuid
51RES := gvimext.res
52DEFFILE = gvimext_ming.def
53OBJ := gvimext.o
54
55DLL := gvimext.dll
56
57.PHONY: all all-before all-after clean clean-custom
58
59all: all-before $(DLL) all-after
60
61$(DLL): $(OBJ) $(RES) $(DEFFILE)
62 $(CXX) $(LDFLAGS) $(CXXFLAGS) -s -o $@ \
63 -Wl,--enable-auto-image-base \
64 -Wl,--enable-auto-import \
65 -Wl,--whole-archive \
66 $^ \
67 -Wl,--no-whole-archive \
68 $(LIBS)
69
70gvimext.o: gvimext.cpp
71 $(CXX) $(CXXFLAGS) -DFEAT_GETTEXT -c $? -o $@
72
73$(RES): gvimext_ming.rc
74 $(WINDRES) $(WINDRES_FLAGS) --input-format=rc --output-format=coff -DMING $? -o $@
75
76clean: clean-custom
77 -$(DEL) $(OBJ) $(RES) $(DLL)