diff options
| author | Marc G. Fournier <scrappy@hub.org> | 1996-10-19 06:33:55 +0000 |
|---|---|---|
| committer | Marc G. Fournier <scrappy@hub.org> | 1996-10-19 06:33:55 +0000 |
| commit | 2a23c4e72444ca01da22c7e3f4c4a4d0fd2057c3 (patch) | |
| tree | 62d7ff3b375a570f48ffadc55159e5e599959d98 /src/Makefile | |
| parent | 0eac5b0ed5f57f1567ade5685701f9f0b2d7c7dd (diff) | |
| download | postgresql-2a23c4e72444ca01da22c7e3f4c4a4d0fd2057c3.tar.gz | |
Not quite the cleanest way to do it, but add an option to Makefile.global
that allows one to compile libpq++
this should be set on a port-by-port basis
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile index 6b9ea3f956..548af888db 100644 --- a/src/Makefile +++ b/src/Makefile @@ -7,7 +7,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/Makefile,v 1.7 1996/10/07 23:53:47 scrappy Exp $ +# $Header: /cvsroot/pgsql/src/Makefile,v 1.8 1996/10/19 06:33:52 scrappy Exp $ # # NOTES # objdir - location of the objects and generated files (eg. obj) @@ -28,6 +28,9 @@ XARGS = xargs .DEFAULT all: $(MAKE) -C backend $@ $(MAKE) -C libpq $@ +ifeq ($(HAVE_Cplusplus), true) + $(MAKE) -C libpq++ $@ +endif ifeq ($(USE_TCL), true) $(MAKE) -C libpgtcl $@ endif |
