diff options
Diffstat (limited to 'src/interfaces/Makefile')
-rw-r--r-- | src/interfaces/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/interfaces/Makefile b/src/interfaces/Makefile new file mode 100644 index 00000000000..f3e52d7ca99 --- /dev/null +++ b/src/interfaces/Makefile @@ -0,0 +1,27 @@ +#------------------------------------------------------------------------- +# +# Makefile.inc-- +# Makefile for src/bin (utility programs) +# +# Copyright (c) 1994, Regents of the University of California +# +# +# IDENTIFICATION +# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.1 1997/08/16 20:56:28 scrappy Exp $ +# +#------------------------------------------------------------------------- + +#include ../Makefile.global + +.DEFAULT all: + $(MAKE) -C libpq $@ + +ifeq ($(HAVE_Cplusplus), true) + $(MAKE) -C libpq++ $@ +endif + +ifeq ($(USE_TCL), true) + $(MAKE) -C libpgtcl $@ +endif + +# $(MAKE) -C perl5 $@ |