blob: d764e3f0498b6e543cb4e77eb919d1fec598e2f4 [file] [log] [blame]
Bram Moolenaarf4b8e572004-06-24 15:53:16 +00001# 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
Bram Moolenaarb0d3f872010-12-30 14:50:52 +010020# 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
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000031ifeq ($(CROSS),yes)
Bram Moolenaara40c5002005-01-09 21:16:21 +000032DEL = rm
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000033ifeq ($(MINGWOLD),yes)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000034CXXFLAGS := -O2 -mno-cygwin -fvtable-thunks
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000035else
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000036CXXFLAGS := -O2 -mno-cygwin
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000037endif
38else
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000039CXXFLAGS := -O2 -mno-cygwin
Bram Moolenaara40c5002005-01-09 21:16:21 +000040ifneq (sh.exe, $(SHELL))
41DEL = rm
42else
43DEL = del
44endif
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000045endif
Bram Moolenaar48f80c22010-02-24 15:08:27 +010046CXX := $(CROSS_COMPILE)g++
Bram Moolenaarb0d3f872010-12-30 14:50:52 +010047WINDRES := $(CROSS_COMPILE)windres
48WINDRES_CXX = $(CXX)
49WINDRES_FLAGS = --preprocessor="$(WINDRES_CXX) -E -xc" -DRC_INVOKED
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000050LIBS := -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)
Bram Moolenaarb0d3f872010-12-30 14:50:52 +010062 $(CXX) $(LDFLAGS) $(CXXFLAGS) -s -o $@ \
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000063 -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
Bram Moolenaarb0d3f872010-12-30 14:50:52 +010074 $(WINDRES) $(WINDRES_FLAGS) --input-format=rc --output-format=coff -DMING $? -o $@
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000075
76clean: clean-custom
Bram Moolenaara40c5002005-01-09 21:16:21 +000077 -$(DEL) $(OBJ) $(RES) $(DLL)
Bram Moolenaarf4b8e572004-06-24 15:53:16 +000078