Mercurial > hg > octave-thorsten
changeset 9254:fbb43bc17a4d
add missing Makefile in examples/@FIRfilter
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Mon, 25 May 2009 11:54:52 +0200 |
parents | eff4a10ffe46 |
children | 1c2d2c9f4a8d |
files | ChangeLog configure.in examples/@FIRfilter/Makefile.in examples/Makefile.in |
diffstat | 4 files changed, 104 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2009-05-25 Jaroslav Hajek <highegg@gmail.com> + + * examples/@FIRfilter/Makefile.in: New file. + * examples/Makefile.in: Include it. + * configure.in: Ditto. + 2009-05-24 Benjamin Lindner <lindnerb@users.sourceforge.net> * configure.in: (SCRIPTS_EXE_SUFFIX) Define to ".exe" for
--- a/configure.in +++ b/configure.in @@ -2163,7 +2163,8 @@ AC_CONFIG_FILES([octMakefile Makeconf test/Makefile doc/Makefile doc/faq/Makefile doc/interpreter/Makefile doc/liboctave/Makefile doc/refcard/Makefile emacs/Makefile - examples/Makefile examples/@polynomial/Makefile liboctave/Makefile + examples/Makefile examples/@polynomial/Makefile + examples/@FIRfilter/Makefile liboctave/Makefile liboctave/oct-types.h src/Makefile src/mxarray.h libcruft/Makefile libcruft/Makerules libcruft/amos/Makefile libcruft/blas/Makefile libcruft/daspk/Makefile libcruft/dasrt/Makefile
new file mode 100644 --- /dev/null +++ b/examples/@FIRfilter/Makefile.in @@ -0,0 +1,95 @@ +# Makefile for octave's scripts/geometry directory +# +# Copyright (C) 2007, 2008, 2009 John W. Eaton +# +# This file is part of Octave. +# +# Octave is free software; you can redistribute it and/or modify it +# under the terms of the GNU General Public License as published by the +# Free Software Foundation; either version 3 of the License, or (at +# your option) any later version. +# +# Octave is distributed in the hope that it will be useful, but WITHOUT +# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or +# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License +# for more details. +# +# You should have received a copy of the GNU General Public License +# along with Octave; see the file COPYING. If not, see +# <http://www.gnu.org/licenses/>. + +TOPDIR = ../.. + +script_sub_dir = @FIRfilter + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ + +include $(TOPDIR)/Makeconf + +define do-mkpkgadd +$(top_srcdir)/scripts/mkpkgadd $(srcdir) > PKG_ADD.t +if [ -n "`cat PKG_ADD.t`" ]; then \ + mv PKG_ADD.t PKG_ADD ; \ +else \ + rm -f PKG_ADD.t ; \ +fi +endef + +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ + +SOURCES = \ + display.m \ + FIRfilter_aggregation.m \ + FIRfilter.m \ + subsasgn.m \ + subsref.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: +.PHONY: install install-strip + +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`/examples/$(script_sub_dir) +.PHONY: dist + +check-m-sources: + @$(do-check-m-sources) +.PHONY: check-m-sources