mirror of
https://git.postgresql.org/git/postgresql.git
synced 2026-02-06 04:37:31 +08:00
27 lines
723 B
Makefile
27 lines
723 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/interfaces
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $PostgreSQL: pgsql/src/interfaces/Makefile,v 1.53 2004/04/20 00:33:51 pgsql Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/interfaces
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
DIRS := libpq ecpg
|
|
|
|
ALLDIRS := $(DIRS)
|
|
|
|
all install installdirs uninstall dep depend distprep:
|
|
@for dir in $(DIRS); do $(MAKE) -C $$dir $@ || exit; done
|
|
|
|
clean:
|
|
@for dir in $(DIRS); do $(MAKE) -C $$dir $@; done
|
|
|
|
distclean maintainer-clean:
|
|
@for dir in $(ALLDIRS); do $(MAKE) -C $$dir $@; done
|