Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7783c2b

Browse files
committed
Remove configure code from ecpg, as well as remove the 'for' loop from the
Makefile, as it isn't appropriate for GNUmake
1 parent 1e7fed7 commit 7783c2b

File tree

7 files changed

+65
-1095
lines changed

7 files changed

+65
-1095
lines changed

src/interfaces/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.5 1998/02/11 15:17:47 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.6 1998/02/12 02:14:14 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -16,7 +16,7 @@ include $(SRCDIR)/Makefile.global
1616

1717
.DEFAULT all:
1818
$(MAKE) -C libpq $@
19-
$(MAKE) -C ecpg $@
19+
# $(MAKE) -C ecpg $@
2020
ifeq ($(HAVE_Cplusplus), true)
2121
$(MAKE) -C libpq++ $@
2222
else

src/interfaces/ecpg/Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
SUBDIRS = include lib preproc doc
22

33
all install uninstall clean:
4-
for i in $(SUBDIRS); do ( cd $$i; make $@ ); done
4+
$(MAKE) -C include $@
5+
$(MAKE) -C lib $@
6+
$(MAKE) -C preproc $@
7+
$(MAKE) -C doc $@

0 commit comments

Comments
 (0)