mirror of https://github.com/postgres/postgres
parent
7a76e29b0e
commit
5e19e14ecd
@ -0,0 +1,28 @@ |
||||
# $Header: /cvsroot/pgsql/src/pl/tcl/modules/Makefile,v 1.1 2001/05/11 23:38:06 petere Exp $
|
||||
|
||||
subdir = src/pl/tcl/modules
|
||||
top_builddir = ../../../..
|
||||
include $(top_builddir)/src/Makefile.global |
||||
|
||||
MODULES = pltcl_loadmod pltcl_delmod pltcl_listmod
|
||||
|
||||
all: $(MODULES) |
||||
|
||||
$(MODULES): %: %.in $(top_builddir)/src/Makefile.global |
||||
sed 's,@TCLSH@,$(TCLSH),g' $< >$@
|
||||
chmod a+x $@
|
||||
|
||||
install: all installdirs |
||||
$(INSTALL_SCRIPT) pltcl_loadmod $(DESTDIR)$(bindir)/pltcl_loadmod
|
||||
$(INSTALL_SCRIPT) pltcl_delmod $(DESTDIR)$(bindir)/pltcl_delmod
|
||||
$(INSTALL_SCRIPT) pltcl_listmod $(DESTDIR)$(bindir)/pltcl_listmod
|
||||
$(INSTALL_DATA) unknown.pltcl $(DESTDIR)$(datadir)/unknown.pltcl
|
||||
|
||||
installdirs: |
||||
$(mkinstalldirs) $(DESTDIR)$(bindir) $(DESTDIR)$(datadir)
|
||||
|
||||
uninstall: |
||||
rm -f $(DESTDIR)$(bindir)/pltcl_loadmod $(DESTDIR)$(bindir)/pltcl_delmod $(DESTDIR)$(bindir)/pltcl_listmod $(DESTDIR)$(datadir)/unknown.pltcl
|
||||
|
||||
clean distclean maintainer-clean: |
||||
rm -f $(MODULES)
|
Loading…
Reference in new issue