Mercurial > hg > octave-jordi
view scripts/control/system/Makefile.in @ 3439:3234a698073a
[project @ 2000-01-14 09:51:14 by jwe]
author | jwe |
---|---|
date | Fri, 14 Jan 2000 09:52:35 +0000 |
parents | c85bd5f4b0f1 |
children | fa4dfbc33ce5 |
line wrap: on
line source
# # Makefile for octave's scripts/control/system directory # # John W. Eaton # jwe@bevo.che.wisc.edu # University of Wisconsin-Madison # Department of Chemical Engineering TOPDIR = ../../.. script_sub_dir = control/system srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ include $(TOPDIR)/Makeconf INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ SOURCES = *.m DISTFILES = Makefile.in $(SOURCES) FCN_FILES = $(wildcard $(srcdir)/*.m) FCN_FILES_NO_DIR = $(notdir $(FCN_FILES)) BINDISTFILES = $(FCN_FILES) all: .PHONY: all install install-strip: $(top_srcdir)/mkinstalldirs $(fcnfiledir)/$(script_sub_dir) for f in $(FCN_FILES_NO_DIR); do \ rm -f $(fcnfiledir)/$(script_sub_dir)/$$f; \ $(INSTALL_DATA) $(srcdir)/$$f $(fcnfiledir)/$(script_sub_dir)/$$f; \ done .PHONY: install install-strip uninstall: for f in $(FCN_FILES_NO_DIR); \ do rm -f $(fcnfiledir)/$(script_sub_dir)/$$f; \ done .PHONY: uninstall clean: .PHONY: clean tags: $(SOURCES) ctags $(SOURCES) TAGS: $(SOURCES) etags $(SOURCES) mostlyclean: clean .PHONY: mostlyclean distclean: clean rm -f Makefile .PHONY: distclean maintainer-clean: distclean rm -f tags TAGS .PHONY: maintainer-clean dist: ln $(DISTFILES) ../../../`cat ../../../.fname`/scripts/$(script_sub_dir) .PHONY: dist bin-dist: ln $(BINDISTFILES) ../../../`cat ../../../.fname`/scripts/$(script_sub_dir) .PHONY: bin-dist