[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.20 and 1.46

version 1.20, 1993/07/17 13:43:56 version 1.46, 1994/07/06 04:13:37
Line 1 
Line 1 
   #       $NetBSD$
 #       @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91  #       @(#)bsd.prog.mk 5.26 (Berkeley) 6/25/91
   
 .if exists(${.CURDIR}/../Makefile.inc)  .if exists(${.CURDIR}/../Makefile.inc)
Line 6 
Line 7 
   
 .SUFFIXES: .out .o .c .cc .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}  LIBCRT0?=       ${DESTDIR}/usr/lib/crt0.o
   LIBC?=          ${DESTDIR}/usr/lib/libc.a
 STRIP?= -s  LIBCOMPAT?=     ${DESTDIR}/usr/lib/libcompat.a
   LIBCRYPT?=      ${DESTDIR}/usr/lib/libcrypt.a
 BINGRP?=        bin  LIBCURSES?=     ${DESTDIR}/usr/lib/libcurses.a
 BINOWN?=        bin  LIBDBM?=        ${DESTDIR}/usr/lib/libdbm.a
 BINMODE?=       555  LIBDES?=        ${DESTDIR}/usr/lib/libdes.a
   LIBGCC?=        ${DESTDIR}/usr/lib/libgcc.a
 LIBCRT0?=       /usr/lib/crt0.o  LIBL?=          ${DESTDIR}/usr/lib/libl.a
 LIBC?=          /usr/lib/libc.a  LIBKDB?=        ${DESTDIR}/usr/lib/libkdb.a
 LIBCOMPAT?=     /usr/lib/libcompat.a  LIBKRB?=        ${DESTDIR}/usr/lib/libkrb.a
 .ifndef EXPORTABLE_SYSTEM  LIBKVM?=        ${DESTDIR}/usr/lib/libkvm.a
 LIBCRYPT?=      /usr/lib/libcrypt.a  LIBM?=          ${DESTDIR}/usr/lib/libm.a
 .endif  LIBMP?=         ${DESTDIR}/usr/lib/libmp.a
 LIBCURSES?=     /usr/lib/libcurses.a  LIBPC?=         ${DESTDIR}/usr/lib/libpc.a
 LIBDBM?=        /usr/lib/libdbm.a  LIBPLOT?=       ${DESTDIR}/usr/lib/libplot.a
 LIBDES?=        /usr/lib/libdes.a  LIBRESOLV?=     ${DESTDIR}/usr/lib/libresolv.a
 LIBL?=          /usr/lib/libl.a  LIBRPCSVC?=     ${DESTDIR}/usr/lib/librpcsvc.a
 LIBKDB?=        /usr/lib/libkdb.a  LIBSKEY?=       ${DESTDIR}/usr/lib/libskey.a
 LIBKRB?=        /usr/lib/libkrb.a  LIBTERMCAP?=    ${DESTDIR}/usr/lib/libtermcap.a
 LIBM?=          /usr/lib/libm.a  LIBUTIL?=       ${DESTDIR}/usr/lib/libutil.a
 LIBMP?=         /usr/lib/libmp.a  
 LIBPC?=         /usr/lib/libpc.a  
 LIBPLOT?=       /usr/lib/libplot.a  
 LIBRESOLV?=     /usr/lib/libresolv.a  
 LIBRPC?=        /usr/lib/librpc.a  
 LIBRPCSVC?=     /usr/lib/librpcsvc.a  
 LIBTERM?=       /usr/lib/libterm.a  
 LIBUTIL?=       /usr/lib/libutil.a  
   
 .if defined(SHAREDSTRINGS)  .if defined(SHAREDSTRINGS)
 CLEANFILES+=strings  CLEANFILES+=strings
Line 50  CLEANFILES+=strings
Line 42  CLEANFILES+=strings
         ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -          ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
         @mv -f x.c x.cc          @mv -f x.c x.cc
         @${CXX} ${CXXFLAGS} -c x.cc -o ${.TARGET}          @${CXX} ${CXXFLAGS} -c x.cc -o ${.TARGET}
           @rm -f x.cc
   
 .C.o:  .C.o:
         ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -          ${CXX} -E ${CXXFLAGS} ${.IMPSRC} | xstr -c -
         @mv -f x.c x.C          @mv -f x.c x.C
         @${CXX} ${CXXFLAGS} -c x.C -o ${.TARGET}          @${CXX} ${CXXFLAGS} -c x.C -o ${.TARGET}
           @rm -f x.C
 .endif  .endif
   
 .if defined(PROG)  
 .if defined(SRCS)  
   
 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}  
         ${CC} ${LDFLAGS} -o ${.TARGET} ${OBJS} ${LDADD}  
   
   .if defined(PROG)
   SRCS?=  ${PROG}.c
   .if !empty(SRCS:N*.h:N*.sh)
   OBJS+=  ${SRCS:N*.h:N*.sh:R:S/$/.o/g}
 .endif  .endif
   
 .else defined(PROG)  .if defined(DESTDIR)
   
 SRCS= ${PROG}.c  ${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
           ${CC} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} -nostdlib -L${DESTDIR}/usr/lib ${LIBCRT0} ${OBJS} ${LDADD} -lgcc -lc -lgcc
   
 ${PROG}: ${SRCS} ${LIBC} ${DPADD}  .else
         ${CC} ${LDFLAGS} ${CFLAGS} -o ${.TARGET} ${.CURDIR}/${SRCS} ${LDADD}  
   
 MKDEP=  -p  ${PROG}: ${LIBCRT0} ${OBJS} ${LIBC} ${DPADD}
           ${CC} ${LDFLAGS} ${LDSTATIC} -o ${.TARGET} ${OBJS} ${LDADD}
   
 .endif  .endif
   
Line 92  MAN1= ${PROG}.0
Line 77  MAN1= ${PROG}.0
 .endif  .endif
 .endif  .endif
   
 .if !defined(NOMAN)  
 MANALL= ${MAN1} ${MAN2} ${MAN3} ${MAN4} ${MAN5} ${MAN6} ${MAN7} ${MAN8}  
 .endif  
   
 _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)  
         rm -f .depend  
         files="${.ALLSRC:M*.c}"; \  
         if [ "$$files" != "" ]; then \  
           mkdep -a ${MKDEP} ${CFLAGS:M-[ID]*} $$files; \  
         fi  
         files="${.ALLSRC:M*.cc} ${.ALLSRC:M*.C} ${.ALLSRC:M*.cxx}"; \  
         if [ "$$files" != "  " ]; then \  
           mkdep -a ${MKDEP} -+ ${CXXFLAGS:M-[ID]*} $$files; \  
         fi  
 .endif  
 .endif  
   
 .if !target(install)  .if !target(install)
 .if !target(beforeinstall)  .if !target(beforeinstall)
 beforeinstall:  beforeinstall:
 .if defined(DESTDIR) || defined(BINDIR)  
         @if [ ! -d "${DESTDIR}${BINDIR}" ]; then \  
                 /bin/rm -f ${DESTDIR}${BINDIR} ; \  
                 mkdir -p ${DESTDIR}${BINDIR} ; \  
                 chown root.wheel ${DESTDIR}${BINDIR} ; \  
                 chmod 755 ${DESTDIR}${BINDIR} ; \  
         else \  
                 true ; \  
         fi  
 .endif  
 .endif  .endif
 .if !target(afterinstall)  .if !target(afterinstall)
 afterinstall:  afterinstall:
 .endif  .endif
   
 .if !target(realinstall)  .if !target(realinstall)
 realinstall: _PROGSUBDIR  realinstall:
 .if defined(PROG)  .if defined(PROG)
         install ${COPY} ${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 180  realinstall: _PROGSUBDIR
Line 119  realinstall: _PROGSUBDIR
                 ln $$l $$t; \                  ln $$l $$t; \
         done; true          done; true
 .endif  .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 -f obj > /dev/null 2>&1 || true; \  
         here=`pwd`; subdir=`echo $$here | sed 's,^/usr/src/,,'`; \  
         if test $$here != $$subdir ; then \  
                 dest=/usr/obj/$$subdir ; \  
                 echo "$$here -> $$dest"; ln -s $$dest obj; \  
                 if test -d /usr/obj -a ! -d $$dest; then \  
                         mkdir -p $$dest; \  
                 else \  
                         true; \  
                 fi; \  
         else \  
                 true ; \  
                 dest=$$here/obj ; \  
                 echo "making $$here/obj" ; \  
                 if test ! -d obj ; then \  
                         mkdir $$here/obj; \  
                 fi ; \  
         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.20  
changed lines
  Added in v.1.46

CVSweb <webmaster@jp.NetBSD.org>