Commit f63f5680 authored by Marc G. Fournier's avatar Marc G. Fournier

Add appropriate links into the interfaces directory, as well as a Makefile

covering the interfaces directory
parent ff246d7b
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
# #
# #
# IDENTIFICATION # 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 $
# #
#------------------------------------------------------------------------- #-------------------------------------------------------------------------
...@@ -41,13 +41,7 @@ all: ...@@ -41,13 +41,7 @@ all:
fi fi
$(MAKE) -C utils all $(MAKE) -C utils all
$(MAKE) -C backend all $(MAKE) -C backend all
$(MAKE) -C libpq all $(MAKE) -C interfaces all
ifeq ($(HAVE_Cplusplus), true)
$(MAKE) -C libpq++ all
endif
ifeq ($(USE_TCL), true)
$(MAKE) -C libpgtcl all
endif
$(MAKE) -C bin all $(MAKE) -C bin all
ifneq ($(wildcard man), ) ifneq ($(wildcard man), )
$(MAKE) -C man all $(MAKE) -C man all
...@@ -66,13 +60,7 @@ clean: ...@@ -66,13 +60,7 @@ clean:
$(MAKE) -C lextest clean $(MAKE) -C lextest clean
$(MAKE) -C utils clean $(MAKE) -C utils clean
$(MAKE) -C backend clean $(MAKE) -C backend clean
$(MAKE) -C libpq clean $(MAKE) -C interfaces clean
ifeq ($(HAVE_Cplusplus), true)
$(MAKE) -C libpq++ clean
endif
ifeq ($(USE_TCL), true)
$(MAKE) -C libpgtcl clean
endif
$(MAKE) -C bin clean $(MAKE) -C bin clean
ifneq ($(wildcard man), ) ifneq ($(wildcard man), )
$(MAKE) -C man clean $(MAKE) -C man clean
...@@ -104,13 +92,7 @@ distclean: clean ...@@ -104,13 +92,7 @@ distclean: clean
$(MAKE) -C lextest $@ $(MAKE) -C lextest $@
$(MAKE) -C utils $@ $(MAKE) -C utils $@
$(MAKE) -C backend $@ $(MAKE) -C backend $@
$(MAKE) -C libpq $@ $(MAKE) -C interfaces $@
ifeq ($(HAVE_Cplusplus), true)
$(MAKE) -C libpq++ $@
endif
ifeq ($(USE_TCL), true)
$(MAKE) -C libpgtcl $@
endif
$(MAKE) -C bin $@ $(MAKE) -C bin $@
ifneq ($(wildcard man), ) ifneq ($(wildcard man), )
$(MAKE) -C man $@ $(MAKE) -C man $@
...@@ -121,7 +103,7 @@ endif ...@@ -121,7 +103,7 @@ endif
TAGS: TAGS:
rm -f 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 ; \ $(FIND) $$i -name '*.[chyl]' -print | $(XARGS) $(ETAGS) -a ; \
done done
......
#-------------------------------------------------------------------------
#
# 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 $@
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment