Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
johto committed Jun 4, 2014
0 parents commit 2bddf33
Show file tree
Hide file tree
Showing 7 changed files with 1,959 additions and 0 deletions.
20 changes: 20 additions & 0 deletions Makefile
@@ -0,0 +1,20 @@
MODULE_big = pgcov
OBJS = comm.o pgcov.o func_iter.o

EXTENSION = pgcov
DATA = pgcov--1.0.sql

REGRESS = gcov_guts function_line_info gcov

ifdef NO_PGXS
# Needed to locate plpgsql.h pre-9.2
PG_CPPFLAGS += -I\$(top_srcdir)/src/pl/plpgsql/src/
subdir = contrib/pgcov
top_builddir = ../..
include $(top_builddir)/src/Makefile.Global
include $(top_srcdir)/contrib/contrib-global.mk
else
PG_CONFIG = pg_config
PGXS := $(shell $(PG_CONFIG) --pgxs)
include $(PGXS)
endif

0 comments on commit 2bddf33

Please sign in to comment.