[BACK]Return to Makefile CVS log [TXT][DIR] Up to [local] / src / usr.bin / vim

Diff for /src/usr.bin/vim/Attic/Makefile between version 1.5 and 1.6

version 1.5, 1996/10/15 08:35:25 version 1.6, 1996/12/08 14:32:38
Line 29 
Line 29 
 # I haven't tried this, but it's a start...  # I haven't tried this, but it's a start...
 # Use the following to build Motif vim:  # Use the following to build Motif vim:
 #SRCS+= gui.c gui_motif.c gui_x11.c pty_openbsd.c  #SRCS+= gui.c gui_motif.c gui_x11.c pty_openbsd.c
 #LDADD+=        -L/some/where/motif/lib -L/some/where/X11/lib -lXm -lXt -lX11 -lutil  #LDADD+=        -L/usr/local/LessTiff/lib -L/usr/local/X11R6.1/lib -lXm -lXt -lX11 -lutil
 #CFLAGS+=       -I/some/where/motif/include -I/some/where/X11/include -DHAVE_X11 -DUSE_GUI_MOTIF  #CFLAGS+=       -I/usr/local/LessTiff/include -I/usr/local/X11R6.1/include -DHAVE_X11 -DUSE_GUI_MOTIF
 # Use the following to build Athena vim:  # Use the following to build Athena vim:
 #SRCS+= gui.c gui_athena.c gui_x11.c pty_openbsd.c gui_at_sb.c  #SRCS+= gui.c gui_athena.c gui_x11.c pty_openbsd.c gui_at_sb.c
 #LDADD+=        -L/some/where/X11/lib -lXaw -lXt -lXmu -lX11 -lutil  #LDADD+=        -L/some/where/X11/lib -lXaw -lXt -lXmu -lX11 -lutil
Line 47 
Line 47 
         ${CC} mkcmdtab.o -o mkcmdtab          ${CC} mkcmdtab.o -o mkcmdtab
   
 afterinstall:  afterinstall:
         install -d -m 555 -o ${BINOWN} -g ${BINGRP} ${DESTDIR}/usr/share/vim          ${INSTALL} -d -m 555 -o ${BINOWN} -g ${BINGRP} ${DESTDIR}/usr/share/vim
         cd ${.CURDIR}/doc; for i in ${DOCS}; do \          cd ${.CURDIR}/doc; for i in ${DOCS}; do \
                 cmp -s $$i ${DESTDIR}/usr/share/vim/$$i || \                  cmp -s $$i ${DESTDIR}/usr/share/vim/$$i || \
                 install -c -m 444 -o ${BINOWN} -g ${BINGRP} $$i \                  ${INSTALL} ${COPY} -m 444 -o ${BINOWN} -g ${BINGRP} $$i \
                 ${DESTDIR}/usr/share/vim; done                  ${DESTDIR}/usr/share/vim; done
   
 .include <bsd.prog.mk>  .include <bsd.prog.mk>

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6