mirror of
https://github.com/postgres/postgres.git
synced 2026-02-10 06:13:34 -05:00
some massaging by Peter Eisentraut. This is basically a simple generalization of the existing contrib makefiles.
15 lines
387 B
Makefile
15 lines
387 B
Makefile
# $PostgreSQL: pgsql/src/makefiles/Makefile,v 1.1 2004/07/30 12:26:40 petere Exp $
|
|
|
|
subdir = src/makefiles
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
|
install: all installdirs
|
|
$(INSTALL_DATA) $(srcdir)/pgxs.mk $(DESTDIR)$(pgxsdir)/$(subdir)/
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) $(DESTDIR)$(pgxsdir)/$(subdir)
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(pgxsdir)/$(subdir)/pgxs.mk
|