[BACK]Return to Makefile CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.sbin / makemandb

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

Diff for /src/usr.sbin/makemandb/Makefile between version 1.8 and 1.9

version 1.8, 2017/05/21 15:28:43 version 1.9, 2017/06/18 16:24:10
Line 6  MDOCDIR=${NETBSDSRCDIR}/external/bsd/mdo
Line 6  MDOCDIR=${NETBSDSRCDIR}/external/bsd/mdo
 MANCONFDIR=${NETBSDSRCDIR}/usr.bin/man  MANCONFDIR=${NETBSDSRCDIR}/usr.bin/man
   
 PROGS=                  makemandb apropos whatis  PROGS=                  makemandb apropos whatis
 SRCS.makemandb=         makemandb.c apropos-utils.c manconf.c  SRCS.makemandb=         makemandb.c apropos-utils.c manconf.c custom_apropos_tokenizer.c
 SRCS.apropos=   apropos.c apropos-utils.c manconf.c  SRCS.apropos=   apropos.c apropos-utils.c manconf.c custom_apropos_tokenizer.c
 SRCS.whatis=    whatis.c apropos-utils.c manconf.c  SRCS.whatis=    whatis.c apropos-utils.c manconf.c custom_apropos_tokenizer.c
 MAN.makemandb=  makemandb.8  MAN.makemandb=  makemandb.8
 MAN.apropos=    apropos.1  MAN.apropos=    apropos.1
 MAN.whatis=     whatis.1  MAN.whatis=     whatis.1
Line 39  stopwords.c: stopwords.txt
Line 39  stopwords.c: stopwords.txt
         echo '};'                                                       \          echo '};'                                                       \
         ) > ${.TARGET}          ) > ${.TARGET}
   
 DPSRCS+=        stopwords.c  nostem.c: nostem.txt
 CLEANFILES+=    stopwords.c          ( set -e; ${TOOL_NBPERF} -n nostem_hash -s -p ${.ALLSRC};       \
           echo 'static const char *nostem[] = {';                 \
           ${TOOL_SED} -e 's|^\(.*\)$$|    "\1",|' ${.ALLSRC};             \
           echo '};'                                                       \
           ) > ${.TARGET}
   
   DPSRCS+=        stopwords.c nostem.c
   CLEANFILES+=    stopwords.c nostem.c
   
 .include <bsd.prog.mk>  .include <bsd.prog.mk>

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

CVSweb <webmaster@jp.NetBSD.org>