1
0
mirror of https://github.com/postgres/postgres.git synced 2025-08-21 10:42:50 +03:00

Fix some makefiles that fail to yield good results from 'make -qp'.

This doesn't really matter for ordinary building of Postgres, but it's
useful for automated checks, such as my just-committed pgcheckdefines.
This commit is contained in:
Tom Lane
2006-07-15 03:33:14 +00:00
parent 2d11d26113
commit a7143b3088
6 changed files with 18 additions and 22 deletions

View File

@@ -4,7 +4,7 @@
# Makefile for port/nextstep
#
# IDENTIFICATION
# $PostgreSQL: pgsql/src/backend/port/nextstep/Makefile,v 1.8 2003/11/29 19:51:54 pgsql Exp $
# $PostgreSQL: pgsql/src/backend/port/nextstep/Makefile,v 1.9 2006/07/15 03:33:14 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -12,7 +12,7 @@ subdir = src/backend/port/nextstep
top_builddir = ../../../..
include $(top_builddir)/src/Makefile.global
OBJS = dynloader.o port.o
OBJS = port.o
all: SUBSYS.o

View File

@@ -1,10 +1,10 @@
#
# Makefile for utils
#
# $PostgreSQL: pgsql/src/backend/utils/Makefile,v 1.23 2004/07/17 03:29:15 tgl Exp $
# $PostgreSQL: pgsql/src/backend/utils/Makefile,v 1.24 2006/07/15 03:33:14 tgl Exp $
#
subdir = src/backend/utils/
subdir = src/backend/utils
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global