bfbe0c1c5b
GNU Octave is a high-level language, primarily intended for numerical computations. It provides a convenient command line interface for solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with Matlab. It may also be used as a batch-oriented language.
20 lines
563 B
Plaintext
20 lines
563 B
Plaintext
$OpenBSD: patch-doc_liboctave_Makefile_in,v 1.1.1.1 2001/07/15 18:07:16 naddy Exp $
|
|
--- doc/liboctave/Makefile.in.orig Sat Jun 19 06:16:20 1999
|
|
+++ doc/liboctave/Makefile.in Fri Jul 13 00:23:01 2001
|
|
@@ -61,6 +61,15 @@ check:
|
|
.PHONY: check
|
|
|
|
install: all
|
|
+ $(top_srcdir)/mkinstalldirs $(infodir)
|
|
+ @if test -d $(infodir) ; then \
|
|
+ rm -f $(infodir)/liboctave.info*; \
|
|
+ echo "installing info files in $(infodir)" ; \
|
|
+ for f in liboctave.info* ; do \
|
|
+ $(INSTALL_DATA) $$f $(infodir)/$$f ; \
|
|
+ done; \
|
|
+ fi
|
|
+
|
|
.PHONY: install
|
|
|
|
uninstall:
|