mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
20 lines
405 B
Makefile
20 lines
405 B
Makefile
# contrib/uuid-ossp/Makefile
|
|
|
|
MODULE_big = uuid-ossp
|
|
OBJS = uuid-ossp.o
|
|
DATA_built = uuid-ossp.sql
|
|
DATA = uninstall_uuid-ossp.sql
|
|
|
|
SHLIB_LINK += $(OSSP_UUID_LIBS)
|
|
|
|
ifdef USE_PGXS
|
|
PG_CONFIG = pg_config
|
|
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
|