1 #-------------------------------------------------------------------------
3 # Makefile for src/pl (procedural languages)
5 # Copyright (c) 1994, Regents of the University of California
9 #-------------------------------------------------------------------------
13 include $(top_builddir
)/src
/Makefile.global
17 ifeq ($(with_perl
), yes
)
21 ifeq ($(with_python
), yes
)
25 ifeq ($(with_tcl
), yes
)
29 all install installdirs uninstall distprep
clean distclean maintainer-clean
:
30 @for
dir in
$(DIRS
); do
$(MAKE
) -C
$$dir $@ || exit
; done
32 # We'd like check operations to run all the subtests before failing.
34 @CHECKERR
=0; for
dir in
$(DIRS
); do \
35 $(MAKE
) -C
$$dir $@ || CHECKERR
=$$?
; \