view Makefile.in @ 1349:33cf1f36aec6

[project @ 1995-09-05 07:06:43 by jwe]
author jwe
date Tue, 05 Sep 1995 07:09:38 +0000
parents 80755ad71013
children 02a4e580de4e
line wrap: on
line source

#
# Makefile for octave's src directory
#
# John W. Eaton
# jwe@che.utexas.edu
# Department of Chemical Engineering
# The University of Texas at Austin

# Maybe this message will prevent people from asking why the
# Makefiles don't work for them.  Maybe not.

all: FORCE
	@echo ""
	@echo "**********************************************************"
	@echo "*                                                        *"
	@echo "*  To compile Octave, you will need a recent version of  *"
	@echo "*  GNU Make.                                             *"
	@echo "*                                                        *"
	@echo "*  You will also need g++ and libg++.                    *"
	@echo "*                                                        *"
	@echo "*  This version of Octave has been developed with        *"
	@echo "*  version 2.7.0.   You probably won't get very far      *"
	@echo "*  with earlier versions.  Later versions may work,      *"
	@echo "*  but C++ is still evolving, so don't be too surprised  *"
	@echo "*  if you run into some trouble.                         *"
	@echo "*                                                        *"
	@echo "*  Now would be a good time to read INSTALL.OCTAVE if    *"
	@echo "*  you have not done so already.                         *"
	@echo "*                                                        *"
	@echo "**********************************************************"
	@echo ""
	$(MAKE) -f octMakefile all

TARGETS = octave-bug libcruft liboctave kpathsea dld info plplot readline \
	src scripts doc check octave.info INSTALL.info BUGS.info \
	install uninstall tags TAGS clean-tar dist-z links-for-dist dist-tar \
	clean-dist-tar dist links-for-bin-dist bin-dist-tar \
	clean-bin-dist-tar binary-dist doc-dist-tar clean-doc-dist-tar \
	doc-dist local-dist-tar clean-local-dist-tar local-dist \
	split-dist split-local-dist snapshot-z snapshot snapshot-version

NO_DEP_TARGETS = clean mostlyclean distclean realclean

ALL_TARGETS = $(TARGETS) $(NO_DEP_TARGETS)

$(TARGETS): FORCE
	$(MAKE) -f octMakefile $@

$(NO_DEP_TARGETS): FORCE
	$(MAKE) -f octMakefile omit_deps=true $@

FORCE: