#
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.15 1997/05/16 01:59:51 scrappy Exp $
+# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.16 1997/08/16 20:56:25 scrappy Exp $
#
#-------------------------------------------------------------------------
fi
$(MAKE) -C utils all
$(MAKE) -C backend all
- $(MAKE) -C libpq all
-ifeq ($(HAVE_Cplusplus), true)
- $(MAKE) -C libpq++ all
-endif
-ifeq ($(USE_TCL), true)
- $(MAKE) -C libpgtcl all
-endif
+ $(MAKE) -C interfaces all
$(MAKE) -C bin all
ifneq ($(wildcard man), )
$(MAKE) -C man all
$(MAKE) -C lextest clean
$(MAKE) -C utils clean
$(MAKE) -C backend clean
- $(MAKE) -C libpq clean
-ifeq ($(HAVE_Cplusplus), true)
- $(MAKE) -C libpq++ clean
-endif
-ifeq ($(USE_TCL), true)
- $(MAKE) -C libpgtcl clean
-endif
+ $(MAKE) -C interfaces clean
$(MAKE) -C bin clean
ifneq ($(wildcard man), )
$(MAKE) -C man clean
$(MAKE) -C lextest $@
$(MAKE) -C utils $@
$(MAKE) -C backend $@
- $(MAKE) -C libpq $@
-ifeq ($(HAVE_Cplusplus), true)
- $(MAKE) -C libpq++ $@
-endif
-ifeq ($(USE_TCL), true)
- $(MAKE) -C libpgtcl $@
-endif
+ $(MAKE) -C interfaces $@
$(MAKE) -C bin $@
ifneq ($(wildcard man), )
$(MAKE) -C man $@
TAGS:
rm -f TAGS; \
- for i in backend libpq bin; do \
+ for i in backend interfaces/libpq bin; do \
$(FIND) $$i -name '*.[chyl]' -print | $(XARGS) $(ETAGS) -a ; \
done
--- /dev/null
+#-------------------------------------------------------------------------
+#
+# 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 $@