summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg/include/Makefile
diff options
context:
space:
mode:
authorMarc G. Fournier1998-02-12 02:14:59 +0000
committerMarc G. Fournier1998-02-12 02:14:59 +0000
commit7783c2b9ff236694266dc41435e614bab3010b23 (patch)
treed6c2ab650ba497a3ed904753856defdc504a43fd /src/interfaces/ecpg/include/Makefile
parent1e7fed7fd9b6e55f012ef1e48e1f8bfb53a3102b (diff)
Remove configure code from ecpg, as well as remove the 'for' loop from the
Makefile, as it isn't appropriate for GNUmake
Diffstat (limited to 'src/interfaces/ecpg/include/Makefile')
-rw-r--r--src/interfaces/ecpg/include/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/interfaces/ecpg/include/Makefile b/src/interfaces/ecpg/include/Makefile
index 08bc9df7f2d..de9096be769 100644
--- a/src/interfaces/ecpg/include/Makefile
+++ b/src/interfaces/ecpg/include/Makefile
@@ -6,11 +6,11 @@ all clean::
@echo Nothing to be done.
install::
- install ecpglib.h $(HEADERDIR)
- install ecpgtype.h $(HEADERDIR)
- install sqlca.h $(HEADERDIR)
+ install ecpglib.h $(DESTDIR)$(HEADERDIR)
+ install ecpgtype.h $(DESTDIR)$(HEADERDIR)
+ install sqlca.h $(DESTDIR)$(HEADERDIR)
uninstall::
- rm -f $(HEADERDIR)/ecpglib.h
- rm -f $(HEADERDIR)/ecpgtype.h
- rm -f $(HEADERDIR)/sqlca.h
+ rm -f $(DESTDIR)$(HEADERDIR)/ecpglib.h
+ rm -f $(DESTDIR)$(HEADERDIR)/ecpgtype.h
+ rm -f $(DESTDIR)$(HEADERDIR)/sqlca.h