X-Git-Url: http://lists.indexdata.com/cgi-bin?a=blobdiff_plain;f=Makefile.in;h=b399b2d9c02d6e3034a18c0330949e82e41dc069;hb=d60c3f162beb6a82545509f282585b6517933ae6;hp=a223cf18863372c2867a5dbc9160b0730893feaa;hpb=cbc20dd0b142fcf6e0b6540c9ef69e1254867d01;p=ir-tcl-moved-to-github.git diff --git a/Makefile.in b/Makefile.in index a223cf1..b399b2d 100644 --- a/Makefile.in +++ b/Makefile.in @@ -2,11 +2,11 @@ # (c) Index Data 1995 # See the file LICENSE for details. # Sebastian Hammer, Adam Dickmeiss -# $Id: Makefile.in,v 1.33 1996-03-27 17:00:08 adam Exp $ +# $Id: Makefile.in,v 1.36 1996-06-28 08:43:53 adam Exp $ SHELL=/bin/sh # IrTcl Version -VERSION=1.1 +VERSION=1.2 # Directory prefix with machine independent files (scripts, setup files, etc.) prefix = @prefix@ @@ -26,11 +26,11 @@ CC=@CC@ # Tcl libraries and include files TCLLIB=@TCLLIB@ -TCLINCLUDE=@TCLINCLUDE@ +TCLINC=@TCLINC@ # Tk & X11 libraries and include files TKLIB=@TKLIB@ -TKINCLUDE=@TKINCLUDE@ +TKINC=@TKINC@ # MOSI settings, directory with libmosi.a and source MOSI=@MOSI@ @@ -42,7 +42,7 @@ MOSIINC=@MOSIINC@ YAZLIB=$(YAZDIR)/lib/libyaz.a $(MOSILIB) # All include paths -INCLUDE=-I. -I$(YAZDIR)/include $(TKINCLUDE) $(TCLINCLUDE) $(MOSIINC) +INCLUDE=-I. -I$(YAZDIR)/include $(TKINC) $(TCLINC) $(MOSIINC) # All command line options except CFLAGS DEFS=-DCCL2RPN=0 @DEFS@ -DMOSI=$(MOSI) -DIRTCLDIR=\"$(IRTCLDIR)\" \ @@ -80,6 +80,23 @@ libirtcl.a: $(O) ar qc libirtcl.a $(O) $(RANLIB) libirtcl.a +install.man: + @echo "Installation of man-pages" + @if [ ! -d $(MANDIR) ]; then \ + echo Making $(MANDIR); \ + mkdir $(MANDIR); \ + fi + @if [ ! -d $(MANDIR)/mann ]; then \ + echo Making $(MANDIR)/mann; \ + mkdir $(MANDIR)/mann; \ + fi + @cd doc; if [ -d $(MANDIR)/mann ]; then \ + for p in *.n; do \ + echo "Installing $$p"; \ + $(INSTALL_DATA) $$p $(MANDIR)/mann; \ + done; \ + fi + install: ir-tcl @for d in $(IRTCLDIR) $(IRTCLDIR)/formats $(IRTCLDIR)/bitmaps; do \ if [ ! -d $$d ]; then \