Mercurial > hg > octave-nkf
changeset 2136:9d666c466d20
[project @ 1996-05-13 03:31:46 by jwe]
Initial revision
author | jwe |
---|---|
date | Mon, 13 May 1996 03:31:46 +0000 |
parents | 12e92d302bbf |
children | f9d5d427152d |
files | examples/Makefile.in |
diffstat | 1 files changed, 50 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
new file mode 100644 --- /dev/null +++ b/examples/Makefile.in @@ -0,0 +1,50 @@ +# +# Makefile for octave's examples directory +# +# John W. Eaton +# jwe@bevo.che.wisc.edu +# University of Wisconsin-Madison +# Department of Chemical Engineering + +TOPDIR = .. + +srcdir = @srcdir@ +top_srcdir = @top_srcdir@ +VPATH = @srcdir@ + +include $(TOPDIR)/Makeconf + +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_DATA = @INSTALL_DATA@ + +SOURCES = hello.cc + +DISTFILES = Makefile.in $(SOURCES) + +SUBDIRS = + +DISTSUBDIRS = + +all: +.PHONY: all + +tags: + ctags $(SOURCES) + +TAGS: $(SOURCES) + etags $(SOURCES) + +distclean: + rm -f Makefile + +maintainer-clean: distclean + rm -f tags TAGS + +local-dist: + ln $(DISTFILES) ../`cat ../.fname`/examples +.PHONY: local-dist + +dist: + ln $(DISTFILES) ../`cat ../.fname`/examples +.PHONY: dist