1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Fix several contrib makefiles that failed in VPATH builds, particularly

when not using gcc (which has slightly nonstandard inclusion rules).
This commit is contained in:
Tom Lane
2005-10-18 01:30:49 +00:00
parent 23836fb1fb
commit c62b29a603
5 changed files with 22 additions and 14 deletions

View File

@ -1,4 +1,4 @@
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.14 2005/09/27 17:13:00 tgl Exp $
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.15 2005/10/18 01:30:48 tgl Exp $
MODULE_big = cube
OBJS= cube.o cubeparse.o
@ -9,6 +9,8 @@ REGRESS = cube
EXTRA_CLEAN = cubeparse.c cubeparse.h cubescan.c y.tab.c y.tab.h
PG_CPPFLAGS = -I.
SHLIB_LINK += $(filter -lm, $(LIBS))
ifdef USE_PGXS