]> granicus.if.org Git - postgresql/commitdiff
Provide and use a makefile target to build all generated headers.
authorTom Lane <tgl@sss.pgh.pa.us>
Fri, 1 Jul 2016 19:08:55 +0000 (15:08 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Fri, 1 Jul 2016 19:09:02 +0000 (15:09 -0400)
As of 9.6, pg_regress doesn't build unless storage/lwlocknames.h has been
created; but there was nothing forcing that to happen if you just went into
src/test/regress/ and built there.  We previously had a similar complaint
about plpython.

To fix in a way that won't break next time we invent a generated header,
make src/backend/Makefile expose a phony target for updating all the
include files it builds, and invoke that before building pg_regress or
plpython.  In principle, maybe we ought to invoke that everywhere; but
it would add a lot of usually-useless make cycles, so let's just do it
in the places where people have complained.

I made a couple of cosmetic adjustments in src/backend/Makefile as well,
to deal with the generated headers in consistent orders.

Michael Paquier and Tom Lane

Report: <31398.1467036827@sss.pgh.pa.us>
Report: <20150916200959.GB32090@msg.df7cb.de>

src/Makefile.global.in
src/backend/Makefile
src/pl/plpython/Makefile
src/test/modules/Makefile
src/test/regress/GNUmakefile

index 811d05f4608bda11d69c7f15b111649a74a0d02b..c211a2d2e753fe7ec10237af855618d8aeb6be8d 100644 (file)
@@ -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
 
 
 ##########################################################################
index ec2dc7be404cc2f0342c3ed621d745d39378eec9..3b08defe2bc0836859ce6b169b0d234fd0aeeee8 100644 (file)
@@ -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 $@) && \
index 9f62e299f6099cfe9d904ebbd3ab872962f866ac..647b4b1b96fc759f99bd60c6bfebd55eddbc60ca 100644 (file)
@@ -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
index 892662755a8c5d23b30067e56b60089676cb01c6..3ce99046f8419e7af3f388b98a4b1fc9bdb8bcc7 100644 (file)
@@ -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)
index f5ed474d6e3ad78cfcde147f95714a39ab0abc1f..6a275cb729c255b384a7498fe037d42b292fbe43 100644 (file)
@@ -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