mirror of
https://github.com/postgres/postgres.git
synced 2025-09-02 04:21:28 +03:00
40 lines
893 B
Makefile
40 lines
893 B
Makefile
#-------------------------------------------------------------------------
|
|
#
|
|
# Makefile for src/interfaces
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
# $Header: /cvsroot/pgsql/src/interfaces/Makefile,v 1.49 2002/08/30 13:06:20 scrappy Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
subdir = src/interfaces
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
DIRS := libpq ecpg
|
|
|
|
ALLDIRS := $(DIRS) libpgtcl python jdbc
|
|
|
|
ifeq ($(with_tcl), yes)
|
|
DIRS += libpgtcl
|
|
endif
|
|
|
|
ifeq ($(with_python), yes)
|
|
DIRS += python
|
|
endif
|
|
|
|
ifeq ($(with_java), yes)
|
|
DIRS += jdbc
|
|
endif
|
|
|
|
|
|
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
|