2010-09-20 16:08:53 -04:00
|
|
|
# config/Makefile
|
2004-07-30 08:26:40 -04:00
|
|
|
|
|
|
|
|
subdir = config
|
|
|
|
|
top_builddir = ..
|
|
|
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
install: all installdirs
|
2005-12-09 16:19:36 -05:00
|
|
|
$(INSTALL_SCRIPT) $(srcdir)/install-sh '$(DESTDIR)$(pgxsdir)/config/install-sh'
|
2015-12-11 16:14:27 -05:00
|
|
|
$(INSTALL_SCRIPT) $(srcdir)/missing '$(DESTDIR)$(pgxsdir)/config/missing'
|
2004-07-30 08:26:40 -04:00
|
|
|
|
|
|
|
|
installdirs:
|
2009-08-26 18:24:44 -04:00
|
|
|
$(MKDIR_P) '$(DESTDIR)$(pgxsdir)/config'
|
2004-07-30 08:26:40 -04:00
|
|
|
|
|
|
|
|
uninstall:
|
2009-08-26 18:24:44 -04:00
|
|
|
rm -f '$(DESTDIR)$(pgxsdir)/config/install-sh'
|
2015-12-11 16:14:27 -05:00
|
|
|
rm -f '$(DESTDIR)$(pgxsdir)/config/missing'
|