mirror of
https://github.com/postgres/postgres.git
synced 2026-04-03 08:15:53 -04:00
* configure + Makefile changes
* shared memory attaching in EXEC_BACKEND case (+ minor fix for apparent
cygwin bug under cygwin/EXEC_BACKEND case only)
* PATH env var separator differences
* missing win32 rand functions added
* placeholder replacements for sync etc under port.h
To those who are really interested, and there are a few of you: the attached
patch + file will allow the source base to be compiled (and, for some
definition, "run") under MingW, with the following caveats (I wanted to
first properly fix all but the last of these, but y'all won't quit asking
for a patch :-):
* child death: SIGCHLD not yet sent, so as a minimum, you'll need to
put in some sort of delay after StartupDatabase, and handle setting
StartupPID to 0 etc (ie. the stuff the reaper() signal function is supposed
to do)
* dirmod.c: comment out the elog calls
* dfmgr.c: some hackage required to substitute_libpath_macro
* slru/xact.c: comment out the errno checking after the readdir
(fixed by next version of MingW)
Again, this is only if you *really* want to see postgres compile and start,
and is a nice leg-up for working on the other Win32 TODO list items. Just
don't expect too much else from it at this point...
Claudio Natoli
258 lines
7.8 KiB
Makefile
258 lines
7.8 KiB
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for the postgres backend
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $PostgreSQL: pgsql/src/backend/Makefile,v 1.98 2004/02/02 00:11:30 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/backend
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
DIRS := access bootstrap catalog parser commands executor lib libpq \
|
|
main nodes optimizer port postmaster regex rewrite \
|
|
storage tcop utils
|
|
|
|
OBJS := $(DIRS:%=%/SUBSYS.o)
|
|
|
|
ifeq ($(PORTNAME), qnx4)
|
|
# This file crashes qnx4's wlink and is therefore not in
|
|
# bootstrap/SUBSYS.o on that platform. (Wotta hack ... is it still
|
|
# necessary?) [ Yes, until the Watcom compiler goes open source it's
|
|
# effectively unsupported ]
|
|
OBJS+= bootstrap/bootstrap.o
|
|
endif
|
|
|
|
|
|
##########################################################################
|
|
|
|
all: submake-libpgport postgres $(POSTGRES_IMP)
|
|
|
|
ifneq ($(PORTNAME), cygwin)
|
|
ifneq ($(PORTNAME), win32)
|
|
|
|
postgres: $(OBJS)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $(export_dynamic) $^ $(LIBS) -o $@
|
|
|
|
endif
|
|
endif
|
|
|
|
ifeq ($(PORTNAME), cygwin)
|
|
postgres: $(OBJS) $(DLLINIT) postgres.def libpostgres.a
|
|
$(DLLTOOL) --dllname $@$(X) --output-exp $@.exp --def postgres.def
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@$(X) -Wl,--base-file,$@.base $@.exp $(OBJS) $(LIBS)
|
|
$(DLLTOOL) --dllname $@$(X) --base-file $@.base --output-exp $@.exp --def postgres.def
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@$(X) $@.exp $(OBJS) $(LIBS)
|
|
rm -f $@.exp $@.base
|
|
|
|
postgres.def: $(OBJS)
|
|
$(DLLTOOL) --export-all --output-def $@ $^
|
|
|
|
libpostgres.a: postgres.def
|
|
$(DLLTOOL) --dllname postgres.exe --def postgres.def --output-lib $@
|
|
|
|
endif # cygwin
|
|
|
|
ifeq ($(PORTNAME), win32)
|
|
|
|
postgres: $(OBJS) $(DLLINIT) postgres.def libpostgres.a
|
|
$(DLLTOOL) --dllname $@$(X) --output-exp $@.exp --def postgres.def
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@$(X) -Wl,--base-file,$@.base $@.exp $(OBJS) $(LIBS)
|
|
$(DLLTOOL) --dllname $@$(X) --base-file $@.base --output-exp $@.exp --def postgres.def
|
|
$(CC) $(CFLAGS) $(LDFLAGS) -o $@$(X) $@.exp $(OBJS) $(LIBS)
|
|
rm -f $@.exp $@.base
|
|
|
|
postgres.def: $(OBJS)
|
|
$(DLLTOOL) --export-all --output-def $@ $^
|
|
|
|
libpostgres.a: postgres.def
|
|
$(DLLTOOL) --dllname postgres.exe --def postgres.def --output-lib $@
|
|
|
|
endif # win32
|
|
|
|
|
|
ifeq ($(PORTNAME), aix)
|
|
|
|
postgres: $(POSTGRES_IMP)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -Wl,-bE:$(top_builddir)/src/backend/$(POSTGRES_IMP) $(LIBS) -o $@
|
|
|
|
$(POSTGRES_IMP): $(OBJS)
|
|
$(LD) $(LDREL) $(LDOUT) SUBSYS.o $^
|
|
ifeq ($(host_os), aix3.2.5)
|
|
$(MKLDEXPORT) SUBSYS.o $(bindir)/postgres > $@
|
|
else
|
|
ifneq (,$(findstring aix4.1, $(host_os)))
|
|
$(MKLDEXPORT) SUBSYS.o $(bindir)/postgres > $@
|
|
else
|
|
$(MKLDEXPORT) SUBSYS.o . > $@
|
|
endif
|
|
endif
|
|
@rm -f SUBSYS.o
|
|
|
|
endif # aix
|
|
|
|
# Parallel make trickery
|
|
$(OBJS): $(DIRS:%=%-recursive) ;
|
|
|
|
.PHONY: $(DIRS:%=%-recursive)
|
|
# Update the commonly used headers before building the subdirectories
|
|
$(DIRS:%=%-recursive): $(top_builddir)/src/include/parser/parse.h $(top_builddir)/src/include/utils/fmgroids.h
|
|
$(MAKE) -C $(subst -recursive,,$@) all
|
|
|
|
|
|
$(DLLINIT): $(DLLINIT:%.o=%.c)
|
|
$(MAKE) -C $(@D) $(@F)
|
|
|
|
# The postgres.o target is needed by the rule in Makefile.global that
|
|
# creates the exports file when MAKE_EXPORTS = true.
|
|
postgres.o: $(OBJS)
|
|
$(CC) $(LDREL) $(LDFLAGS) $^ $(LIBS) -o $@
|
|
|
|
|
|
# The following targets are specified in make commands that appear in
|
|
# the make files in our subdirectories. Note that it's important we
|
|
# match the dependencies shown in the subdirectory makefiles!
|
|
|
|
$(srcdir)/parser/parse.h: parser/gram.y
|
|
$(MAKE) -C parser parse.h
|
|
|
|
utils/fmgroids.h: utils/Gen_fmgrtab.sh $(top_srcdir)/src/include/catalog/pg_proc.h
|
|
$(MAKE) -C utils fmgroids.h
|
|
|
|
# Make symlinks for these headers in the include directory. That way
|
|
# we can cut down on the -I options. Also, a symlink is automatically
|
|
# up to date when we update the base file.
|
|
|
|
$(top_builddir)/src/include/parser/parse.h: $(srcdir)/parser/parse.h
|
|
prereqdir=`cd $(dir $<) >/dev/null && pwd` && \
|
|
cd $(dir $@) && rm -f $(notdir $@) && \
|
|
$(LN_S) "$$prereqdir/$(notdir $<)" .
|
|
|
|
$(top_builddir)/src/include/utils/fmgroids.h: utils/fmgroids.h
|
|
cd $(dir $@) && rm -f $(notdir $@) && \
|
|
$(LN_S) ../../../$(subdir)/utils/fmgroids.h .
|
|
|
|
|
|
##########################################################################
|
|
|
|
distprep:
|
|
$(MAKE) -C parser gram.c parse.h scan.c
|
|
$(MAKE) -C bootstrap bootparse.c bootstrap_tokens.h bootscanner.c
|
|
$(MAKE) -C utils/misc guc-file.c
|
|
|
|
|
|
##########################################################################
|
|
|
|
install: all installdirs install-bin
|
|
ifeq ($(PORTNAME), cygwin)
|
|
ifeq ($(MAKE_DLL), true)
|
|
$(INSTALL_DATA) libpostgres.a $(DESTDIR)$(libdir)/libpostgres.a
|
|
endif
|
|
endif
|
|
ifeq ($(PORTNAME), win32)
|
|
ifeq ($(MAKE_DLL), true)
|
|
$(INSTALL_DATA) libpostgres.a $(DESTDIR)$(libdir)/libpostgres.a
|
|
endif
|
|
endif
|
|
$(MAKE) -C catalog install-data
|
|
$(INSTALL_DATA) $(srcdir)/libpq/pg_hba.conf.sample $(DESTDIR)$(datadir)/pg_hba.conf.sample
|
|
$(INSTALL_DATA) $(srcdir)/libpq/pg_ident.conf.sample $(DESTDIR)$(datadir)/pg_ident.conf.sample
|
|
$(INSTALL_DATA) $(srcdir)/utils/misc/postgresql.conf.sample $(DESTDIR)$(datadir)/postgresql.conf.sample
|
|
|
|
install-bin: postgres $(POSTGRES_IMP) installdirs
|
|
$(INSTALL_PROGRAM) postgres$(X) $(DESTDIR)$(bindir)/postgres$(X)
|
|
ifneq ($(PORTNAME), win32)
|
|
@rm -f $(DESTDIR)$(bindir)/postmaster$(X)
|
|
ln -s postgres$(X) $(DESTDIR)$(bindir)/postmaster$(X)
|
|
else
|
|
$(INSTALL_PROGRAM) postgres$(X) $(DESTDIR)$(bindir)/postmaster$(X)
|
|
endif
|
|
ifeq ($(MAKE_EXPORTS), true)
|
|
$(INSTALL_DATA) $(POSTGRES_IMP) $(DESTDIR)$(pkglibdir)/$(POSTGRES_IMP)
|
|
endif
|
|
|
|
.PHONY: install-bin
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(datadir)
|
|
ifeq ($(PORTNAME), cygwin)
|
|
ifeq ($(MAKE_DLL), true)
|
|
$(mkinstalldirs) $(DESTDIR)$(libdir)
|
|
endif
|
|
endif
|
|
ifeq ($(PORTNAME), win32)
|
|
ifeq ($(MAKE_DLL), true)
|
|
$(mkinstalldirs) $(DESTDIR)$(libdir)
|
|
endif
|
|
endif
|
|
ifeq ($(MAKE_EXPORTS), true)
|
|
$(mkinstalldirs) $(DESTDIR)$(pkglibdir)
|
|
endif
|
|
|
|
|
|
##########################################################################
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(bindir)/postgres$(X) $(DESTDIR)$(bindir)/postmaster
|
|
ifeq ($(MAKE_EXPORTS), true)
|
|
rm -f $(DESTDIR)$(pkglibdir)/$(POSTGRES_IMP)
|
|
endif
|
|
ifeq ($(PORTNAME), cygwin)
|
|
ifeq ($(MAKE_DLL), true)
|
|
rm -f $(DESTDIR)$(libdir)/libpostgres.a
|
|
endif
|
|
endif
|
|
ifeq ($(PORTNAME), win32)
|
|
ifeq ($(MAKE_DLL), true)
|
|
rm -f $(DESTDIR)$(libdir)/libpostgres.a
|
|
endif
|
|
endif
|
|
$(MAKE) -C catalog uninstall-data
|
|
rm -f $(DESTDIR)$(datadir)/pg_hba.conf.sample \
|
|
$(DESTDIR)$(datadir)/pg_service.conf.sample \
|
|
$(DESTDIR)$(datadir)/pg_ident.conf.sample \
|
|
$(DESTDIR)$(datadir)/postgresql.conf.sample
|
|
|
|
|
|
##########################################################################
|
|
|
|
clean:
|
|
rm -f postgres$(X) $(POSTGRES_IMP) \
|
|
$(top_srcdir)/src/include/parser/parse.h \
|
|
$(top_builddir)/src/include/utils/fmgroids.h
|
|
ifeq ($(PORTNAME), cygwin)
|
|
rm -f postgres.dll postgres.def libpostgres.a
|
|
endif
|
|
ifeq ($(PORTNAME), win32)
|
|
rm -f postgres.dll postgres.def libpostgres.a
|
|
endif
|
|
for i in $(DIRS); do $(MAKE) -C $$i clean || exit; done
|
|
|
|
distclean: clean
|
|
rm -f port/tas.s port/dynloader.c port/pg_sema.c port/pg_shmem.c
|
|
|
|
maintainer-clean: distclean
|
|
rm -f $(srcdir)/bootstrap/bootparse.c \
|
|
$(srcdir)/bootstrap/bootscanner.c \
|
|
$(srcdir)/bootstrap/bootstrap_tokens.h \
|
|
$(srcdir)/parser/gram.c \
|
|
$(srcdir)/parser/scan.c \
|
|
$(srcdir)/parser/parse.h \
|
|
$(srcdir)/utils/misc/guc-file.c
|
|
|
|
|
|
##########################################################################
|
|
#
|
|
# Support for code development.
|
|
#
|
|
# Use target "quick" to build "postgres" when you know all the subsystems
|
|
# are up to date. It saves the time of doing all the submakes.
|
|
.PHONY: quick
|
|
quick: $(OBJS)
|
|
$(CC) $(CFLAGS) $(LDFLAGS) $(export_dynamic) $^ $(LIBS) -o postgres
|
|
|
|
depend dep: $(top_srcdir)/src/include/parser/parse.h $(top_builddir)/src/include/utils/fmgroids.h
|
|
for i in $(DIRS); do $(MAKE) -C $$i $@; done
|