[BACK]Return to bsd.prog.mk CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / share / mk

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/share/mk/bsd.prog.mk between version 1.3 and 1.6

version 1.3, 1993/03/23 07:26:55 version 1.6, 1993/04/08 14:02:02
Line 17  BINGRP?= bin
Line 17  BINGRP?= bin
 BINOWN?=        bin  BINOWN?=        bin
 BINMODE?=       555  BINMODE?=       555
   
   
   LIBCRT0?=       /usr/lib/crt0.o
 LIBC?=          /usr/lib/libc.a  LIBC?=          /usr/lib/libc.a
 LIBCOMPAT?=     /usr/lib/libcompat.a  LIBCOMPAT?=     /usr/lib/libcompat.a
 LIBCURSES?=     /usr/lib/libcurses.a  LIBCURSES?=     /usr/lib/libcurses.a
Line 30  LIBMP?=  /usr/lib/libmp.a
Line 32  LIBMP?=  /usr/lib/libmp.a
 LIBPC?=         /usr/lib/libpc.a  LIBPC?=         /usr/lib/libpc.a
 LIBPLOT?=       /usr/lib/libplot.a  LIBPLOT?=       /usr/lib/libplot.a
 LIBRESOLV?=     /usr/lib/libresolv.a  LIBRESOLV?=     /usr/lib/libresolv.a
 LIBRPC?=        /usr/lib/sunrpc.a  LIBRPC?=        /usr/lib/librpc.a
 LIBTERM?=       /usr/lib/libterm.a  LIBTERM?=       /usr/lib/libterm.a
 LIBUTIL?=       /usr/lib/libutil.a  LIBUTIL?=       /usr/lib/libutil.a
   
Line 47  CLEANFILES+=strings
Line 49  CLEANFILES+=strings
   
 OBJS+=  ${SRCS:R:S/$/.o/g}  OBJS+=  ${SRCS:R:S/$/.o/g}
   
   .if defined(LDONLY)
   
   ${PROG}: ${LIBCRT0} ${LIBC} ${OBJS} ${DPADD}
           ${LD} ${LDFLAGS} -o ${.TARGET} ${LIBCRT0} ${OBJS} ${LIBC} ${LDADD}
   
   .else defined(LDONLY)
   
 ${PROG}: ${OBJS} ${LIBC} ${DPADD}  ${PROG}: ${OBJS} ${LIBC} ${DPADD}
         ${CC} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}          ${CC} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}
   
   .endif
   
 .else defined(PROG)  .else defined(PROG)
   
 SRCS= ${PROG}.c  SRCS= ${PROG}.c
Line 88  all: ${PROG} ${MANALL} _PROGSUBDIR
Line 99  all: ${PROG} ${MANALL} _PROGSUBDIR
 .if !target(clean)  .if !target(clean)
 clean: _PROGSUBDIR  clean: _PROGSUBDIR
         rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES}          rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES}
           rm -f .depend ${MANALL}
 .endif  .endif
   
 .if !target(cleandir)  .if !target(cleandir)
 cleandir: _PROGSUBDIR  cleandir: _PROGSUBDIR
         rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES}          rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES} ${MANALL}
         rm -f .depend ${MANALL}          rm -f .depend ${MANALL}
 .endif  .endif
   
Line 108  depend: .depend _PROGSUBDIR
Line 120  depend: .depend _PROGSUBDIR
 .if !target(install)  .if !target(install)
 .if !target(beforeinstall)  .if !target(beforeinstall)
 beforeinstall:  beforeinstall:
           @if [ ! -d ${DESTDIR}${BINDIR} ]; then \
                   /bin/rm ${DESTDIR}${BINDIR} ; \
                   mkdir -p ${DESTDIR}${BINDIR} ; \
                   chown root.wheel ${DESTDIR}${BINDIR} ; \
                   chmod 755 ${DESTDIR}${BINDIR} ; \
           else \
                   true ; \
           fi
 .endif  .endif
 .if !target(afterinstall)  .if !target(afterinstall)
 afterinstall:  afterinstall:
Line 115  afterinstall:
Line 135  afterinstall:
   
 realinstall: _PROGSUBDIR  realinstall: _PROGSUBDIR
 .if defined(PROG)  .if defined(PROG)
         install ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \          install -c ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
             ${PROG} ${DESTDIR}${BINDIR}              ${PROG} ${DESTDIR}${BINDIR}
 .endif  .endif
 .if defined(HIDEGAME)  .if defined(HIDEGAME)

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

CVSweb <webmaster@jp.NetBSD.org>