Mercurial > hg > octave-nkf
view scripts/optimization/Makefile.in @ 5899:82c38ce145a7
[project @ 2006-07-19 23:00:22 by jwe]
author | jwe |
---|---|
date | Wed, 19 Jul 2006 23:00:22 +0000 |
parents | f9ac7ebf0e19 |
children | 7099f1ae465e |
line wrap: on
line source
# # Makefile for octave's scripts/optimization directory # # John W. Eaton # jwe@che.utexas.edu # Department of Chemical Engineering # The University of Texas at Austin TOPDIR = ../.. script_sub_dir = optimization srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ include $(TOPDIR)/Makeconf INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ SOURCES = *.m EXTRAS = glpktest1 glpktest2 DISTFILES = Makefile.in $(SOURCES) $(EXTRAS) FCN_FILES = $(wildcard $(srcdir)/*.m) 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/optimization .PHONY: dist