mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
b09c248bdd
installations whose pg_config program does not appear first in the PATH. Per gripe from Eddie Stanley and subsequent discussions with Fabien Coelho and others.
54 lines
1.1 KiB
Makefile
54 lines
1.1 KiB
Makefile
# $PostgreSQL: pgsql/contrib/cube/Makefile,v 1.20 2007/06/26 22:05:01 tgl Exp $
|
|
|
|
MODULE_big = cube
|
|
OBJS= cube.o cubeparse.o
|
|
|
|
DATA_built = cube.sql
|
|
DATA = uninstall_cube.sql
|
|
DOCS = README.cube
|
|
REGRESS = cube
|
|
|
|
EXTRA_CLEAN = y.tab.c y.tab.h
|
|
|
|
SHLIB_LINK += $(filter -lm, $(LIBS))
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
PGXS := $(shell $(PG_CONFIG) --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/cube
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|
|
|
|
|
|
# cubescan is compiled as part of cubeparse
|
|
cubeparse.o: $(srcdir)/cubescan.c
|
|
|
|
# See notes in src/backend/parser/Makefile about the following two rules
|
|
|
|
$(srcdir)/cubeparse.c: $(srcdir)/cubeparse.h ;
|
|
|
|
$(srcdir)/cubeparse.h: cubeparse.y
|
|
ifdef YACC
|
|
$(YACC) -d $(YFLAGS) $<
|
|
mv -f y.tab.c $(srcdir)/cubeparse.c
|
|
mv -f y.tab.h $(srcdir)/cubeparse.h
|
|
else
|
|
@$(missing) bison $< $@
|
|
endif
|
|
|
|
$(srcdir)/cubescan.c: cubescan.l
|
|
ifdef FLEX
|
|
$(FLEX) $(FLEXFLAGS) -o'$@' $<
|
|
else
|
|
@$(missing) flex $< $@
|
|
endif
|
|
|
|
distprep: $(srcdir)/cubeparse.c $(srcdir)/cubeparse.h $(srcdir)/cubescan.c
|
|
|
|
maintainer-clean:
|
|
rm -f $(srcdir)/cubeparse.c $(srcdir)/cubeparse.h $(srcdir)/cubescan.c
|