ossp-pkg/uuid/pgsql/Makefile 1.1 -> 1.2
--- Makefile 2006/01/12 20:00:23 1.1
+++ Makefile 2006/01/12 20:31:51 1.2
@@ -12,7 +12,8 @@
# DSO. Hence we fiddle around with the Makefiles which "PGXS" uses
# itself ourself.
-PGXS := $(shell pg_config --pgxs)
+PG_CONFIG ?= pg_config
+PGXS := $(shell $(PG_CONFIG) --pgxs)
top_builddir := $(dir $(PGXS))../..
include $(top_builddir)/src/Makefile.global
@@ -48,3 +49,7 @@
rm -f $(OBJS)
rm -f uuid.sql
+realclean: distclean
+
+test:
+
|
|