changeset 1436:fa4faf65f88d

[project @ 1995-09-19 07:47:24 by jwe] Initial revision
author jwe
date Tue, 19 Sep 1995 07:48:09 +0000
parents 611c49faddae
children dba5dbb3784b
files readline/doc/Makefile.in readline/examples/Makefile.in
diffstat 2 files changed, 86 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/readline/doc/Makefile.in	Tue Sep 19 07:48:09 1995 +0000
@@ -0,0 +1,65 @@
+# This makefile for History library documentation is in -*- text -*- mode.
+# Emacs likes it that way.
+
+DOC_SUPPORT = ../../doc-support/
+TEXINDEX    = $(DOC_SUPPORT)/texindex
+
+TEX    = tex
+
+RLSRC = rlman.texinfo rluser.texinfo rltech.texinfo
+HISTSRC = hist.texinfo hsuser.texinfo hstech.texinfo
+
+DVIOBJ = readline.dvi history.dvi
+INFOOBJ = readline.info history.info
+PSOBJ = readline.ps history.ps
+
+DISTFILES = $(RLSRC) $(HISTSRC) Makefile.in
+
+all: info dvi
+
+readline.dvi: $(RLSRC)
+	$(TEX) rlman.texinfo
+	$(TEXINDEX) rlman.??
+	$(TEX) rlman.texinfo
+	mv rlman.dvi readline.dvi
+
+readline.info: $(RLSRC)
+	makeinfo rlman.texinfo
+
+history.dvi: ${HISTSRC}
+	$(TEX) hist.texinfo
+	$(TEXINDEX) hist.??
+	$(TEX) hist.texinfo
+	mv hist.dvi history.dvi
+
+history.info: ${HISTSRC}
+	makeinfo hist.texinfo
+
+readline.ps:	readline.dvi
+	dvips -D 300 -o $@ readline.dvi
+
+history.ps:	history.dvi
+	dvips -D 300 -o $@ history.dvi
+
+info:	$(INFOOBJ)
+dvi:	$(DVIOBJ)
+ps:	$(PSOBJ)
+
+
+$(TEXINDEX):
+	(cd $(DOC_SUPPORT); $(MAKE) $(MFLAGS) CFLAGS='$(CFLAGS)' texindex)
+
+distclean mostlyclean clean:
+	rm -f *.aux *.cp *.fn *.ky *.log *.pg *.toc *.tp *.vr *.cps *.pgs \
+	      *.fns *.kys *.tps *.vrs *.o core
+
+maintainer-clean realclean:	clean
+	rm -f *.dvi *.info *.info-*  *.ps
+
+local-dist:
+	ln $(DISTFILES) ../../`cat ../../.fname`/readline/doc
+.PHONY: local-dist
+
+dist:
+	ln $(DISTFILES) ../../`cat ../../.fname`/readline/doc
+.PHONY: dist
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/readline/examples/Makefile.in	Tue Sep 19 07:48:09 1995 +0000
@@ -0,0 +1,21 @@
+# This is the Makefile for the examples subdirectory of readline. -*- text -*-
+#
+
+EXECUTABLES = fileman
+CFLAGS  = -g -I../..
+LDFLAGS = -g -L..
+
+DISTFILES = Inputrc Makefile.in fileman.c histexamp.c manexamp.c
+
+fileman: fileman.o
+	$(CC) $(LDFLAGS) -o fileman fileman.o -lreadline -ltermcap
+
+fileman.o: fileman.c
+  
+local-dist:
+	ln $(DISTFILES) ../../`cat ../../.fname`/readline/examples
+.PHONY: local-dist
+
+dist:
+	ln $(DISTFILES) ../../`cat ../../.fname`/readline/examples
+.PHONY: dist