#-------------------------------------------------------------------------
#
# Makefile.inc--
#    Build and install postgres.
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
#    /usr/local/devel/pglite/cvs/src/Makefile,v 1.3 1995/04/28 23:16:33 andrew Exp
#
# NOTES
#	objdir	- location of the objects and generated files (eg. obj)
#
#-------------------------------------------------------------------------

SUBDIR= backend libpq bin

include mk/postgres.subdir.mk

TAGS:
	rm -f TAGS; \
	for i in backend libpq bin; do \
	  find $$i \( -name '*.[chy]' -o -name '*.lex' \) \
	    -print | xargs etags -a ; \
	done

.PHONY: TAGS
