view scripts/control/Makefile.in @ 6467:a84de7048629

[project @ 2007-03-27 16:05:15 by jwe]
author jwe
date Tue, 27 Mar 2007 16:05:17 +0000
parents 61091f4af6e4
children 59c0c3637633
line wrap: on
line source

#
# Makefile for octave's scripts/control directory
#
# John W. Eaton
# jwe@bevo.che.wisc.edu
# University of Wisconsin-Madison
# Department of Chemical Engineering

TOPDIR = ../..

script_sub_dir = control

srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@

include $(TOPDIR)/Makeconf

INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@

SUBDIRS = base hinf obsolete system util

DISTSUBDIRS = $(SUBDIRS)

DISTFILES = Makefile.in

all:
.PHONY: all

$(SUBDIRS):
	$(MAKE) -C $@ all
.PHONY: $(SUBDIRS)

install install-strip uninstall clean mostlyclean distclean maintainer-clean::
	@$(subdir-for-command)
.PHONY: install install-strip uninstall
.PHONY: clean mostlyclean distclean maintainer-clean

tags TAGS:
	$(SUBDIR_FOR_COMMAND)

distclean::
	rm -f Makefile

maintainer-clean::
	rm -f tags TAGS Makefile

dist:
	ln $(DISTFILES) ../../`cat ../../.fname`/scripts/control
	for dir in $(DISTSUBDIRS); do mkdir ../../`cat ../../.fname`/scripts/control/$$dir; $(MAKE) -C $$dir $@; done
.PHONY: dist