diff --git a/src/Makefile.global.in b/src/Makefile.global.in index 811d05f4608bda11d69c7f15b111649a74a0d02b..c211a2d2e753fe7ec10237af855618d8aeb6be8d 100644 --- a/src/Makefile.global.in +++ b/src/Makefile.global.in @@ -494,6 +494,10 @@ libpq_pgport += $(LDAP_LIBS_FE) endif +########################################################################## +# +# Commonly used submake targets + submake-libpq: $(MAKE) -C $(libpq_builddir) all @@ -506,7 +510,10 @@ submake-libpgfeutils: $(MAKE) -C $(top_builddir)/src/common all $(MAKE) -C $(top_builddir)/src/fe_utils all -.PHONY: submake-libpq submake-libpgport submake-libpgfeutils +submake-generated-headers: + $(MAKE) -C $(top_builddir)/src/backend generated-headers + +.PHONY: submake-libpq submake-libpgport submake-libpgfeutils submake-generated-headers ########################################################################## diff --git a/src/backend/Makefile b/src/backend/Makefile index ec2dc7be404cc2f0342c3ed621d745d39378eec9..3b08defe2bc0836859ce6b169b0d234fd0aeeee8 100644 --- a/src/backend/Makefile +++ b/src/backend/Makefile @@ -110,18 +110,12 @@ endif endif # aix # Update the commonly used headers before building the subdirectories -$(SUBDIRS:%=%-recursive): $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/storage/lwlocknames.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/probes.h +$(SUBDIRS:%=%-recursive): | generated-headers -# run this unconditionally to avoid needing to know its dependencies here: -submake-schemapg: - $(MAKE) -C catalog schemapg.h - -# src/port needs a convenient way to force errcodes.h to get built +# src/port needs a convenient way to force just errcodes.h to get built submake-errcodes: $(top_builddir)/src/include/utils/errcodes.h -.PHONY: submake-schemapg submake-errcodes - -catalog/schemapg.h: | submake-schemapg +.PHONY: submake-errcodes $(top_builddir)/src/port/libpgport_srv.a: | submake-libpgport @@ -142,15 +136,23 @@ parser/gram.h: parser/gram.y storage/lmgr/lwlocknames.h: storage/lmgr/generate-lwlocknames.pl storage/lmgr/lwlocknames.txt $(MAKE) -C storage/lmgr lwlocknames.h -utils/fmgroids.h: utils/Gen_fmgrtab.pl catalog/Catalog.pm $(top_srcdir)/src/include/catalog/pg_proc.h - $(MAKE) -C utils fmgroids.h - utils/errcodes.h: utils/generate-errcodes.pl utils/errcodes.txt $(MAKE) -C utils errcodes.h +utils/fmgroids.h: utils/Gen_fmgrtab.pl catalog/Catalog.pm $(top_srcdir)/src/include/catalog/pg_proc.h + $(MAKE) -C utils fmgroids.h + utils/probes.h: utils/probes.d $(MAKE) -C utils probes.h +# run this unconditionally to avoid needing to know its dependencies here: +catalog/schemapg.h: | submake-schemapg + +submake-schemapg: + $(MAKE) -C catalog schemapg.h + +.PHONY: submake-schemapg + # 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. @@ -162,6 +164,10 @@ utils/probes.h: utils/probes.d # will be in the build tree, so a simple ../.. reference won't work. # For headers generated during regular builds, we prefer a relative symlink. +.PHONY: generated-headers + +generated-headers: $(top_builddir)/src/include/parser/gram.h $(top_builddir)/src/include/catalog/schemapg.h $(top_builddir)/src/include/storage/lwlocknames.h $(top_builddir)/src/include/utils/errcodes.h $(top_builddir)/src/include/utils/fmgroids.h $(top_builddir)/src/include/utils/probes.h + $(top_builddir)/src/include/parser/gram.h: parser/gram.h prereqdir=`cd '$(dir $<)' >/dev/null && pwd` && \ cd '$(dir $@)' && rm -f $(notdir $@) && \ diff --git a/src/pl/plpython/Makefile b/src/pl/plpython/Makefile index 9f62e299f6099cfe9d904ebbd3ab872962f866ac..647b4b1b96fc759f99bd60c6bfebd55eddbc60ca 100644 --- a/src/pl/plpython/Makefile +++ b/src/pl/plpython/Makefile @@ -95,7 +95,7 @@ REGRESS_PLPYTHON3_MANGLE := $(REGRESS) include $(top_srcdir)/src/Makefile.shlib -all: all-lib +all: submake-generated-headers all-lib install: all install-lib install-data @@ -119,15 +119,15 @@ uninstall-data: include $(srcdir)/regress-python3-mangle.mk -check: submake +check: submake-pg-regress $(pg_regress_check) $(REGRESS_OPTS) $(REGRESS) -installcheck: submake +installcheck: submake-pg-regress $(pg_regress_installcheck) $(REGRESS_OPTS) $(REGRESS) -.PHONY: submake -submake: +.PHONY: submake-pg-regress +submake-pg-regress: $(MAKE) -C $(top_builddir)/src/test/regress pg_regress$(X) clean distclean: clean-lib diff --git a/src/test/modules/Makefile b/src/test/modules/Makefile index 892662755a8c5d23b30067e56b60089676cb01c6..3ce99046f8419e7af3f388b98a4b1fc9bdb8bcc7 100644 --- a/src/test/modules/Makefile +++ b/src/test/modules/Makefile @@ -17,9 +17,6 @@ SUBDIRS = \ test_shm_mq \ worker_spi -all: submake-errcodes - -submake-errcodes: - $(MAKE) -C $(top_builddir)/src/backend submake-errcodes +all: submake-generated-headers $(recurse) diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile index f5ed474d6e3ad78cfcde147f95714a39ab0abc1f..6a275cb729c255b384a7498fe037d42b292fbe43 100644 --- a/src/test/regress/GNUmakefile +++ b/src/test/regress/GNUmakefile @@ -36,7 +36,7 @@ EXTRADEFS = '-DHOST_TUPLE="$(host_tuple)"' \ all: pg_regress$(X) -pg_regress$(X): pg_regress.o pg_regress_main.o $(WIN32RES) | submake-libpgport +pg_regress$(X): pg_regress.o pg_regress_main.o $(WIN32RES) | submake-libpgport submake-generated-headers $(CC) $(CFLAGS) $^ $(LDFLAGS) $(LDFLAGS_EX) $(LIBS) -o $@ # dependencies ensure that path changes propagate @@ -105,7 +105,7 @@ $(top_builddir)/contrib/spi/refint$(DLSUFFIX): | submake-contrib-spi ; $(top_builddir)/contrib/spi/autoinc$(DLSUFFIX): | submake-contrib-spi ; -submake-contrib-spi: +submake-contrib-spi: | submake-libpgport submake-generated-headers $(MAKE) -C $(top_builddir)/contrib/spi .PHONY: submake-contrib-spi