summaryrefslogtreecommitdiff
path: root/src/interfaces/odbc/GNUmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/interfaces/odbc/GNUmakefile')
-rw-r--r--src/interfaces/odbc/GNUmakefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/interfaces/odbc/GNUmakefile b/src/interfaces/odbc/GNUmakefile
index 685a98f617..81c16387ca 100644
--- a/src/interfaces/odbc/GNUmakefile
+++ b/src/interfaces/odbc/GNUmakefile
@@ -2,7 +2,7 @@
#
# GNUMakefile for psqlodbc (Postgres ODBC driver)
#
-# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.2 2000/08/31 16:11:55 petere Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/odbc/Attic/GNUmakefile,v 1.3 2000/09/17 13:02:51 petere Exp $
#
#-------------------------------------------------------------------------
@@ -38,18 +38,18 @@ odbc_includedir = $(includedir)/iodbc
install: all installdirs install-headers install-ini install-lib
installdirs:
- $(mkinstalldirs) $(odbc_includedir) $(libdir) $(odbcinst_ini_dir)
+ $(mkinstalldirs) $(DESTDIR)$(odbc_includedir) $(DESTDIR)$(libdir) $(DESTDIR)$(odbcinst_ini_dir)
.PHONY: install-headers
install-headers: $(odbc_headers)
- for i in $^; do $(INSTALL_DATA) $$i $(odbc_includedir) || exit 1; done
+ for i in $^; do $(INSTALL_DATA) $$i $(DESTDIR)$(odbc_includedir) || exit 1; done
.PHONY: install-ini
install-ini: odbcinst.ini
- $(INSTALL_DATA) $< $(odbcinst_ini_dir)
+ $(INSTALL_DATA) $< $(DESTDIR)$(odbcinst_ini_dir)
uninstall: uninstall-lib
- rm -f $(addprefix $(odbc_includedir)/, $(odbc_headers))
+ rm -f $(addprefix $(DESTDIR)$(odbc_includedir)/, $(odbc_headers))
clean distclean maintainer-clean: clean-lib
rm -f $(OBJS)