Mercurial > hg > octave-jordi
view scripts/control/base/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/base directory # # John W. Eaton # jwe@bevo.che.wisc.edu # University of Wisconsin-Madison # Department of Chemical Engineering TOPDIR = ../../.. script_sub_dir = control/base srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ include $(TOPDIR)/Makeconf INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ SOURCES = DEMOcontrol.m __bodquist__.m __freqresp__.m \ __stepimp__.m analdemo.m are.m bddemo.m bode.m bode_bounds.m \ controldemo.m ctrb.m damp.m dare.m dcgain.m dgram.m dkalman.m \ dlqe.m dlqr.m dlyap.m dre.m frdemo.m freqchkw.m gram.m \ impulse.m lqe.m lqg.m lqr.m lsim.m ltifr.m lyap.m nichols.m \ nyquist.m obsv.m place.m pzmap.m rldemo.m rlocus.m step.m \ tzero.m tzero2.m DISTFILES = Makefile.in $(SOURCES) FCN_FILES = $(addprefix $(srcdir)/, $(SOURCES)) FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) all: PKG_ADD .PHONY: all install install-strip: $(do-script-install) .PHONY: install install-strip uninstall: $(do-script-uninstall) .PHONY: uninstall clean: .PHONY: clean PKG_ADD: $(FCN_FILES) @echo "making PKG_ADD" @$(do-mkpkgadd) tags: $(SOURCES) ctags $(SOURCES) TAGS: $(SOURCES) etags $(SOURCES) mostlyclean: clean .PHONY: mostlyclean distclean: clean rm -f Makefile PKG_ADD .PHONY: distclean maintainer-clean: distclean rm -f tags TAGS .PHONY: maintainer-clean dist: ln $(DISTFILES) ../../../`cat ../../../.fname`/scripts/$(script_sub_dir) .PHONY: dist