Mercurial > hg > octave-lyh
view scripts/geometry/Makefile.in @ 6985:cf2f6090147a
[project @ 2007-10-09 16:37:45 by jwe]
author | jwe |
---|---|
date | Tue, 09 Oct 2007 16:37:45 +0000 |
parents | 956148c0d388 |
children | 93c65f2a5668 |
line wrap: on
line source
# # Makefile for octave's scripts/geometry directory # # John W. Eaton # jwe@bevo.che.wisc.edu # University of Wisconsin-Madison # Department of Chemical Engineering TOPDIR = ../.. script_sub_dir = geometry srcdir = @srcdir@ top_srcdir = @top_srcdir@ VPATH = @srcdir@ include $(TOPDIR)/Makeconf INSTALL = @INSTALL@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_DATA = @INSTALL_DATA@ SOURCES = convhull.m delaunay3.m delaunayn.m delaunay.m dsearch.m dsearchn.m \ griddata.m griddata3.m griddatan.m inpolygon.m trimesh.m triplot.m \ tsearchn.m voronoi.m voronoin.m DISTFILES = $(addprefix $(srcdir)/,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/geometry .PHONY: dist