# HG changeset patch # User Jaroslav Hajek # Date 1243245292 -7200 # Node ID fbb43bc17a4de6959c7ac2885769ec783217e24c # Parent eff4a10ffe4687887cb9d401b1296244dea8b588 add missing Makefile in examples/@FIRfilter diff -r eff4a10ffe46 -r fbb43bc17a4d ChangeLog --- a/ChangeLog Mon May 25 08:08:45 2009 +0200 +++ b/ChangeLog Mon May 25 11:54:52 2009 +0200 @@ -1,3 +1,9 @@ +2009-05-25 Jaroslav Hajek + + * examples/@FIRfilter/Makefile.in: New file. + * examples/Makefile.in: Include it. + * configure.in: Ditto. + 2009-05-24 Benjamin Lindner * configure.in: (SCRIPTS_EXE_SUFFIX) Define to ".exe" for diff -r eff4a10ffe46 -r fbb43bc17a4d configure.in --- a/configure.in Mon May 25 08:08:45 2009 +0200 +++ b/configure.in Mon May 25 11:54:52 2009 +0200 @@ -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 diff -r eff4a10ffe46 -r fbb43bc17a4d examples/@FIRfilter/Makefile.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/@FIRfilter/Makefile.in Mon May 25 11:54:52 2009 +0200 @@ -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 +# . + +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 diff -r eff4a10ffe46 -r fbb43bc17a4d examples/Makefile.in --- a/examples/Makefile.in Mon May 25 08:08:45 2009 +0200 +++ b/examples/Makefile.in Mon May 25 11:54:52 2009 +0200 @@ -31,7 +31,7 @@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_DATA = @INSTALL_DATA@ -SUBDIRS = @polynomial +SUBDIRS = @polynomial @FIRfilter DISTSUBDIRS = $(SUBDIRS)