[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.1.1.1 and 1.43

version 1.1.1.1, 1993/03/21 09:45:37 version 1.43, 1994/06/30 05:21:32
Line 1 
Line 1 
 #       @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91  #       from: @(#)bsd.prog.mk   5.26 (Berkeley) 6/25/91
   #       $Id$
   
 .if exists(${.CURDIR}/../Makefile.inc)  .if exists(${.CURDIR}/../Makefile.inc)
 .include "${.CURDIR}/../Makefile.inc"  .include "${.CURDIR}/../Makefile.inc"
 .endif  .endif
   
 .SUFFIXES: .out .o .c .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0  .SUFFIXES: .out .o .c .cc .C .y .l .s .8 .7 .6 .5 .4 .3 .2 .1 .0
   
 .8.0 .7.0 .6.0 .5.0 .4.0 .3.0 .2.0 .1.0:  CFLAGS+=        ${COPTS}
         nroff -mandoc ${.IMPSRC} > ${.TARGET}  
   
 CFLAGS+=${COPTS}  
   
 STRIP?= -s  
   
 BINGRP?=        bin  
 BINOWN?=        bin  
 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
   LIBCRYPT?=      /usr/lib/libcrypt.a
 LIBCURSES?=     /usr/lib/libcurses.a  LIBCURSES?=     /usr/lib/libcurses.a
 LIBDBM?=        /usr/lib/libdbm.a  LIBDBM?=        /usr/lib/libdbm.a
 LIBDES?=        /usr/lib/libdes.a  LIBDES?=        /usr/lib/libdes.a
 LIBL?=          /usr/lib/libl.a  LIBL?=          /usr/lib/libl.a
 LIBKDB?=        /usr/lib/libkdb.a  LIBKDB?=        /usr/lib/libkdb.a
 LIBKRB?=        /usr/lib/libkrb.a  LIBKRB?=        /usr/lib/libkrb.a
   LIBKVM?=        /usr/lib/libkvm.a
 LIBM?=          /usr/lib/libm.a  LIBM?=          /usr/lib/libm.a
 LIBMP?=         /usr/lib/libmp.a  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  LIBRPCSVC?=     /usr/lib/librpcsvc.a
 LIBTERM?=       /usr/lib/libterm.a  LIBSKEY?=       /usr/lib/libskey.a
   LIBTERMCAP?=    /usr/lib/libtermcap.a
 LIBUTIL?=       /usr/lib/libutil.a  LIBUTIL?=       /usr/lib/libutil.a
   
 .if defined(SHAREDSTRINGS)  .if defined(SHAREDSTRINGS)
Line 40  CLEANFILES+=strings
Line 36  CLEANFILES+=strings
         ${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c -          ${CC} -E ${CFLAGS} ${.IMPSRC} | xstr -c -
         @${CC} ${CFLAGS} -c x.c -o ${.TARGET}          @${CC} ${CFLAGS} -c x.c -o ${.TARGET}
         @rm -f x.c          @rm -f x.c
 .endif  
   
 .if defined(PROG)  .cc.o:
 .if defined(SRCS)          ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
           @mv -f x.c x.cc
           @${CXX} ${CXXFLAGS} -c x.cc -o ${.TARGET}
           @rm -f x.cc
   
   .C.o:
           ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
           @mv -f x.c x.C
           @${CXX} ${CXXFLAGS} -c x.C -o ${.TARGET}
           @rm -f x.C
   .endif
   
 OBJS+=  ${SRCS:R:S/$/.o/g}  
   
 ${PROG}: ${OBJS} ${LIBC} ${DPADD}  .if defined(PROG)
         ${CC} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}  SRCS?=  ${PROG}.c
   OBJS+=  ${SRCS:N*.h:N*.sh:R:S/$/.o/g}
   
 .else defined(PROG)  .if defined(LDONLY)
   
 SRCS= ${PROG}.c  ${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
           ${LD} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${LIBCRT0} ${OBJS} ${LIBC} ${LDADD}
   
 ${PROG}: ${SRCS} ${LIBC} ${DPADD}  .else defined(LDONLY)
         ${CC} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} ${LDADD}  
   
 MKDEP=  -p  ${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
           ${CC} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${OBJS} ${LDADD}
   
 .endif  .endif
   
 .if     !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \  .if     !defined(MAN1) && !defined(MAN2) && !defined(MAN3) && \
         !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \          !defined(MAN4) && !defined(MAN5) && !defined(MAN6) && \
         !defined(MAN7) && !defined(MAN8) && !defined(NOMAN)          !defined(MAN7) && !defined(MAN8)
 MAN1=   ${PROG}.0  MAN1=   ${PROG}.0
 .endif  .endif
 .endif  .endif
 MANALL= ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8}  
   
 _PROGSUBDIR: .USE  
 .if defined(SUBDIR) && !empty(SUBDIR)  
         @for entry in ${SUBDIR}; do \  
                 (echo "===> $$entry"; \  
                 if test -d ${.CURDIR}/$${entry}.${MACHINE}; then \  
                         cd ${.CURDIR}/$${entry}.${MACHINE}; \  
                 else \  
                         cd ${.CURDIR}/$${entry}; \  
                 fi; \  
                 ${MAKE} ${.TARGET:S/realinstall/install/:S/.depend/depend/}); \  
         done  
 .endif  
   
 .MAIN: all  .MAIN: all
 all: ${PROG} ${MANALL} _PROGSUBDIR  all: ${PROG} _SUBDIRUSE
   
 .if !target(clean)  .if !target(clean)
 clean: _PROGSUBDIR  clean: _SUBDIRUSE
         rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES}          rm -f a.out [Ee]rrs mklog core *.core ${PROG} ${OBJS} ${CLEANFILES}
 .endif  .endif
   
 .if !target(cleandir)  cleandir: _SUBDIRUSE clean
 cleandir: _PROGSUBDIR  
         rm -f a.out [Ee]rrs mklog core ${PROG} ${OBJS} ${CLEANFILES}  
         rm -f .depend ${MANALL}  
 .endif  
   
 # some of the rules involve .h sources, so remove them from mkdep line  
 .if !target(depend)  
 depend: .depend _PROGSUBDIR  
 .depend: ${SRCS}  
 .if defined(PROG)  
         mkdep ${MKDEP} ${CFLAGS:M-[ID]*} ${.ALLSRC:M*.c}  
 .endif  
 .endif  
   
 .if !target(install)  .if !target(install)
 .if !target(beforeinstall)  .if !target(beforeinstall)
Line 113  beforeinstall:
Line 92  beforeinstall:
 afterinstall:  afterinstall:
 .endif  .endif
   
 realinstall: _PROGSUBDIR  .if !target(realinstall)
   realinstall:
 .if defined(PROG)  .if defined(PROG)
         install ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \          install ${COPY} ${STRIP} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
             ${PROG} ${DESTDIR}${BINDIR}              ${PROG} ${DESTDIR}${BINDIR}
 .endif  .endif
 .if defined(HIDEGAME)  .if defined(HIDEGAME)
         (cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG}; \          (cd ${DESTDIR}/usr/games; rm -f ${PROG}; ln -s dm ${PROG})
             chown games.bin ${PROG})  .endif
 .endif  .endif
   
   install: maninstall _SUBDIRUSE
 .if defined(LINKS) && !empty(LINKS)  .if defined(LINKS) && !empty(LINKS)
         @set ${LINKS}; \          @set ${LINKS}; \
         while test $$# -ge 2; do \          while test $$# -ge 2; do \
Line 135  realinstall: _PROGSUBDIR
Line 117  realinstall: _PROGSUBDIR
         done; true          done; true
 .endif  .endif
   
 install: maninstall  
 maninstall: afterinstall  maninstall: afterinstall
 afterinstall: realinstall  afterinstall: realinstall
 realinstall: beforeinstall  realinstall: beforeinstall
 .endif  .endif
   
 .if !target(lint)  .if !target(lint)
 lint: ${SRCS} _PROGSUBDIR  lint: ${SRCS} _SUBDIRUSE
 .if defined(PROG)  .if defined(PROG)
         @${LINT} ${LINTFLAGS} ${CFLAGS} ${.ALLSRC} | more 2>&1          @${LINT} ${LINTFLAGS} ${CFLAGS} ${.ALLSRC} | more 2>&1
 .endif  .endif
 .endif  .endif
   
 .if !target(obj)  
 .if defined(NOOBJ)  
 obj: _PROGSUBDIR  
 .else  
 obj: _PROGSUBDIR  
         @cd ${.CURDIR}; rm -rf obj; \  
         here=`pwd`; dest=/usr/obj/`echo $$here | sed 's,/usr/src/,,'`; \  
         echo "$$here -> $$dest"; ln -s $$dest obj; \  
         if test -d /usr/obj -a ! -d $$dest; then \  
                 mkdir -p $$dest; \  
         else \  
                 true; \  
         fi;  
 .endif  
 .endif  
   
 .if !target(tags)  
 tags: ${SRCS} _PROGSUBDIR  
 .if defined(PROG)  
         -cd ${.CURDIR}; ctags -f /dev/stdout ${.ALLSRC} | \  
             sed "s;\${.CURDIR}/;;" > tags  
 .endif  
 .endif  
   
 .if !defined(NOMAN)  .if !defined(NOMAN)
 .include <bsd.man.mk>  .include <bsd.man.mk>
 .endif  .endif
   
   .include <bsd.obj.mk>
   .include <bsd.dep.mk>
   .include <bsd.subdir.mk>

Legend:
Removed from v.1.1.1.1  
changed lines
  Added in v.1.43

CVSweb <webmaster@jp.NetBSD.org>