view m4/Makefile.in @ 9733:aab4f2aa9ed9

make ismember more matlab compatible
author Jaroslav Hajek <highegg@gmail.com>
date Fri, 16 Oct 2009 13:13:36 +0200
parents 4531741e5236
children
line wrap: on
line source

# Makefile for octave's m4 directory
#
# Copyright (C) 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 = ..

srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@

include $(TOPDIR)/Makeconf

INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_DATA = @INSTALL_DATA@

M4_FILES = acx_blas.m4 acx_blas_f77_func.m4 acx_lapack.m4 acx_pthread.m4

DISTFILES = $(addprefix $(srcdir)/, Makefile.in $(M4_FILES))

all:
.PHONY: all

install install-strip:
.PHONY: install install-strip

uninstall:
.PHONY: uninstall

tags TAGS:
.PHONY: tags TAGS

clean mostlyclean:
.PHONY: clean mostlyclean

distclean:
	rm -f Makefile
.PHONY: distclean

maintainer-clean: distclean
.PHONY: maintainer-clean

conf-dist dist:
	ln $(DISTFILES) ../`cat ../.fname`/m4
.PHONY: conf-dist dist