view examples/Makefile.in @ 2398:76d255496b89

[project @ 1996-10-13 04:30:01 by jwe]
author jwe
date Sun, 13 Oct 1996 04:30:21 +0000
parents bc85631e060d
children 5b23fc117925
line wrap: on
line source

#
# 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 info-emacs-info info-emacs-octave-help

DISTFILES = Makefile.in $(SOURCES)

SUBDIRS = 

DISTSUBDIRS = 

all:
.PHONY: all

tags:
	ctags $(SOURCES)

TAGS: $(SOURCES)
	etags $(SOURCES)

clean mostlyclean:
.PHONY: clean mostlyclean

distclean:
	rm -f Makefile
.PHONY: distclean

maintainer-clean: distclean
	rm -f tags TAGS
.PHONY: maintainer-clean

local-dist:
	ln $(DISTFILES) ../`cat ../.fname`/examples
.PHONY: local-dist

dist:
	ln $(DISTFILES) ../`cat ../.fname`/examples
.PHONY: dist