added all-info and install-info targets

This commit is contained in:
K. Richard Pixley
1991-11-14 08:54:39 +00:00
parent 58f81e1630
commit e92ee46965
3 changed files with 21 additions and 9 deletions

View File

@ -69,7 +69,9 @@ THINGS_TO_TAR = $(SOURCES) $(SUPPORT)
STAGESTUFF = *.o
all: libreadline.a history.info readline.info
all: libreadline.a
all-info: history.info readline.info
history.info: history.texi
- $(MAKEINFO) -o history.info $(srcdir)/history.texi
@ -105,6 +107,8 @@ install: includes
$(INSTALL_PROG) libreadline.a $(DESTDIR)/libreadline.a.new
-mv $(DESTDIR)/libreadline.a.new $(DESTDIR)/libreadline.a
$(RANLIB) $(DESTDIR)/libreadline.a
install-info: all-info
for i in *.info* ; do \
echo Installing $$i... ; \
(cp $$i $(idestdir)/info/$$i.new \