mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-09 01:57:37 +08:00
some massaging by Peter Eisentraut. This is basically a simple generalization of the existing contrib makefiles.
16 lines
387 B
Makefile
16 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
|