Makefile.cygwin 990 Bytes
Newer Older
1
# $PostgreSQL: pgsql/src/makefiles/Makefile.cygwin,v 1.9 2006/06/22 23:50:35 tgl Exp $
2 3
DLLTOOL= dlltool
DLLWRAP= dllwrap
4
ifdef PGXS
5
BE_DLLLIBS= -L$(libdir) -lpostgres
6
else
7
BE_DLLLIBS= -L$(top_builddir)/src/backend -lpostgres
8
endif
9 10 11 12 13 14 15 16 17 18 19

# linking with -lm or -lc causes program to crash
# (see http://sources.redhat.com/cygwin/faq/faq.html#SEC110)
LIBS:=$(filter-out -lm -lc, $(LIBS))

AROPT = crs
DLSUFFIX = .dll
CFLAGS_SL =

%.dll: %.o
	$(DLLTOOL) --export-all --output-def $*.def $<
20
	$(DLLWRAP) -o $@ --def $*.def $< $(SHLIB_LINK)
21 22 23 24 25 26 27 28
	rm -f $*.def

ifneq (,$(findstring backend,$(subdir)))
ifeq (,$(findstring conversion_procs,$(subdir)))
override CPPFLAGS+= -DBUILDING_DLL
endif
endif

29 30 31 32
ifneq (,$(findstring timezone,$(subdir)))
override CPPFLAGS+= -DBUILDING_DLL
endif

33
ifneq (,$(findstring ecpg/ecpglib,$(subdir)))
34 35 36 37 38 39 40 41 42
override CPPFLAGS+= -DBUILDING_DLL
endif

# required by Python headers
ifneq (,$(findstring src/pl/plpython,$(subdir)))
override CPPFLAGS+= -DUSE_DL_IMPORT
endif

sqlmansect = 7