mirror of https://github.com/postgres/postgres
17 lines
506 B
Makefile
17 lines
506 B
Makefile
# $PostgreSQL: pgsql/config/Makefile,v 1.1 2004/07/30 12:26:39 petere Exp $
|
|
|
|
subdir = config
|
|
top_builddir = ..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
|
install: all installdirs
|
|
$(INSTALL_SCRIPT) $(srcdir)/install-sh $(DESTDIR)$(pgxsdir)/config/install-sh
|
|
$(INSTALL_SCRIPT) $(srcdir)/mkinstalldirs $(DESTDIR)$(pgxsdir)/config/mkinstalldirs
|
|
|
|
installdirs:
|
|
$(mkinstalldirs) $(DESTDIR)$(pgxsdir)/config
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(pgxsdir)/config/install-sh $(DESTDIR)$(pgxsdir)/config/mkinstalldirs
|