Mercurial > hg > octave-nkf
view scripts/general/Makefile.in @ 6439:a37c427ae9d1
[project @ 2007-03-23 15:04:01 by jwe]
author | jwe |
---|---|
date | Fri, 23 Mar 2007 15:05:01 +0000 |
parents | 9b982dd07654 |
children | a84de7048629 |
line wrap: on
line source
# # Makefile for octave's scripts/general directory # # John W. Eaton # jwe@bevo.che.wisc.edu # University of Wisconsin-Madison # Department of Chemical Engineering TOPDIR = ../.. script_sub_dir = general srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ include $(TOPDIR)/Makeconf INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ SOURCES = __isequal__.m arrayfun.m bicubic.m bitcmp.m bitget.m \ bitset.m blkdiag.m cart2pol.m cart2sph.m cell2mat.m circshift.m \ common_size.m cplxpair.m cumtrapz.m deal.m diff.m flipdim.m \ fliplr.m flipud.m gradient.m ind2sub.m int2str.m interp1.m \ interp2.m interpft.m is_duplicate_entry.m isa.m isdefinite.m \ isdir.m isequal.m isequalwithequalnans.m isscalar.m issquare.m \ issymmetric.m isvector.m logical.m logspace.m lookup.m mod.m \ nargchk.m nextpow2.m nthroot.m num2str.m perror.m pol2cart.m \ polyarea.m postpad.m prepad.m quadl.m randperm.m rem.m \ repmat.m rot90.m rotdim.m shift.m shiftdim.m sortrows.m \ sph2cart.m strerror.m sub2ind.m trapz.m tril.m triu.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_S) $(DISTFILES) ../../`cat ../../.fname`/scripts/general .PHONY: dist