mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-03-07 19:47:50 +08:00
20 lines
456 B
Makefile
20 lines
456 B
Makefile
|
# $PostgreSQL: pgsql/contrib/uuid-ossp/Makefile,v 1.1 2007/04/21 17:26:17 petere Exp $
|
||
|
|
||
|
MODULE_big = uuid-ossp
|
||
|
OBJS = uuid-ossp.o
|
||
|
DATA_built = uuid-ossp.sql
|
||
|
DATA = uninstall_uuid-ossp.sql
|
||
|
DOCS = README.uuid-ossp
|
||
|
|
||
|
SHLIB_LINK += -lossp-uuid
|
||
|
|
||
|
ifdef USE_PGXS
|
||
|
PGXS := $(shell pg_config --pgxs)
|
||
|
include $(PGXS)
|
||
|
else
|
||
|
subdir = contrib/uuid-ossp
|
||
|
top_builddir = ../..
|
||
|
include $(top_builddir)/src/Makefile.global
|
||
|
include $(top_srcdir)/contrib/contrib-global.mk
|
||
|
endif
|