1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111
|
MODULE_big = orafunc
OBJS= convert.o file.o datefce.o magic.o others.o plvstr.o plvdate.o shmmc.o plvsubst.o utility.o plvlex.o alert.o pipe.o sqlparse.o putline.o assert.o plunit.o random.o aggregate.o oraguc.o
EXTENSION = orafce
DATA_built = orafunc.sql
DATA = uninstall_orafunc.sql orafce--3.0.7.sql orafce--unpackaged--3.0.7.sql
DOCS = README.asciidoc COPYRIGHT.orafunc INSTALL.orafunc
PG_CONFIG ?= pg_config
# version as a number, e.g. 9.1.4 -> 901
VERSION := $(shell $(PG_CONFIG) --version | awk '{print $$2}')
INTVERSION := $(shell echo $$(($$(echo $(VERSION) | sed 's/\([[:digit:]]\{1,\}\)\.\([[:digit:]]\{1,\}\).*/\1*100+\2/' ))))
# make "all" the default target
all:
REGRESS = orafunc dbms_output dbms_utility files
ifeq ($(shell echo $$(($(INTVERSION) >= 804))),1)
REGRESS += aggregates nlssort dbms_random
endif
REGRESS_OPTS = --load-language=plpgsql --schedule=parallel_schedule
REGRESSION_EXPECTED = expected/orafunc.out expected/dbms_pipe_session_B.out
ifeq ($(shell echo $$(($(INTVERSION) <= 802))),1)
$(REGRESSION_EXPECTED): %.out: %1.out
cp $< $@
else
$(REGRESSION_EXPECTED): %.out: %2.out
cp $< $@
endif
installcheck: $(REGRESSION_EXPECTED)
EXTRA_CLEAN = sqlparse.c sqlparse.h sqlscan.c y.tab.c y.tab.h orafunc.sql.in expected/orafunc.out expected/dbms_pipe_session_B.out
ifndef USE_PGXS
top_builddir = ../..
makefile_global = $(top_builddir)/src/Makefile.global
ifeq "$(wildcard $(makefile_global))" ""
USE_PGXS = 1 # use pgxs if not in contrib directory
endif
endif
ifdef USE_PGXS
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
else
subdir = contrib/$(MODULE_big)
include $(makefile_global)
include $(top_srcdir)/contrib/contrib-global.mk
endif
ifeq ($(enable_nls), yes)
ifeq ($(PORTNAME),win32)
SHLIB_LINK += -lintl
else
SHLIB_LINK += -L$(libdir)/gettextlib
endif
endif
# remove dependency to libxml2 and libxslt
LIBS := $(filter-out -lxml2, $(LIBS))
LIBS := $(filter-out -lxslt, $(LIBS))
plvlex.o: sqlparse.o
sqlparse.o: $(srcdir)/sqlscan.c
$(srcdir)/sqlparse.h: $(srcdir)/sqlparse.c ;
$(srcdir)/sqlparse.c: sqlparse.y
ifdef BISON
$(BISON) -d $(BISONFLAGS) -o $@ $<
else
ifdef YACC
$(YACC) -d $(YFLAGS) -p cube_yy $<
mv -f y.tab.c sqlparse.c
mv -f y.tab.h sqlparse.h
else
bison -d $(BISONFLAGS) -o $@ $<
endif
endif
$(srcdir)/sqlscan.c: sqlscan.l
ifdef FLEX
$(FLEX) $(FLEXFLAGS) -o'$@' $<
else
flex $(FLEXFLAGS) -o'$@' $<
endif
distprep: $(srcdir)/sqlparse.c $(srcdir)/sqlscan.c
maintainer-clean:
rm -f $(srcdir)/sqlparse.c $(srcdir)/sqlscan.c
ifndef MAJORVERSION
MAJORVERSION := $(basename $(VERSION))
endif
orafunc.sql.in:
if [ -f orafunc-$(MAJORVERSION).sql ] ; \
then \
cat orafunc-common.sql orafunc-$(MAJORVERSION).sql > orafunc.sql.in; \
else \
cat orafunc-common.sql orafunc-common-2.sql > orafunc.sql.in; \
fi
|