home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
octave-1.1.1p1-src.tgz
/
tar.out
/
fsf
/
octave
/
readline
/
doc
/
Makefile.in
< prev
next >
Wrap
Makefile
|
1996-09-28
|
925b
|
61 lines
#
# Makefile for octave's readline/doc directory
#
# John W. Eaton
# jwe@che.utexas.edu
# Department of Chemical Engineering
# The University of Texas at Austin
TOPDIR = ../..
srcdir = @srcdir@
top_srcdir = @top_srcdir@
VPATH = @srcdir@
include $(TOPDIR)/Makeconf
SOURCES = hist.texinfo hstech.texinfo hsuser.texinfo rlman.texinfo \
rltech.texinfo rluser.texinfo texindex.c
DISTFILES = Makefile.in $(SOURCES)
all:
.PHONY: all
check: all
.PHONY: check
install: all
.PHONY: install
uninstall:
.PHONY: uninstall
tags: $(SOURCES)
ctags $(SOURCES)
TAGS: $(SOURCES)
etags $(SOURCES)
clean:
.PHONY: clean
mostlyclean: clean
.PHONY: mostlyclean
distclean: clean
rm -f Makefile
.PHONY: distclean
realclean: distclean
rm -f tags TAGS
.PHONY: realclean
local-dist:
ln $(DISTFILES) ../../`cat ../../.fname`/readline/doc
.PHONY: local-dist
dist:
ln $(DISTFILES) ../../`cat ../../.fname`/readline/doc
.PHONY: dist