# HG changeset patch # User jwe # Date 831958306 0 # Node ID 9d666c466d20cd6d55428fd2e763e183b18947af # Parent 12e92d302bbf434a95216513b985cfd5a3180d54 [project @ 1996-05-13 03:31:46 by jwe] Initial revision diff -r 12e92d302bbf -r 9d666c466d20 examples/Makefile.in --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/examples/Makefile.in Mon May 13 03:31:46 1996 +0000 @@ -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