Diff for /elwix/files/csh/Makefile between versions 1.3 and 1.4

version 1.3, 2013/08/05 13:10:17 version 1.4, 2021/07/16 18:35:50
Line 1 Line 1
# $FreeBSD: src/bin/csh/Makefile,v 1.42 2012/02/22 03:36:15 mp Exp $# $FreeBSD$
 #       @(#)Makefile    8.1 (Berkeley) 5/31/93  #       @(#)Makefile    8.1 (Berkeley) 5/31/93
 #  #
 # C Shell with process control; VM/UNIX VAX Makefile  # C Shell with process control; VM/UNIX VAX Makefile
Line 6 Line 6
 #  #
 # To profile, put -DPROF in DEFS and -pg in CFLAGS, and recompile.  # To profile, put -DPROF in DEFS and -pg in CFLAGS, and recompile.
   
.include <bsd.own.mk>.include <src.opts.mk>
   
 BINDIR =        /usr/bin  BINDIR =        /usr/bin
 BSDSRC ?=       /usr/src  BSDSRC ?=       /usr/src
Line 31  SRCS+= tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.d Line 31  SRCS+= tc.alloc.c tc.bind.c tc.const.c tc.decls.h tc.d
         tc.func.c tc.nls.c tc.os.c tc.os.h tc.printf.c tc.prompt.c \          tc.func.c tc.nls.c tc.os.c tc.os.h tc.printf.c tc.prompt.c \
         tc.sched.c tc.sig.c tc.sig.h tc.str.c sh.types.h tc.vers.c tc.wait.h \          tc.sched.c tc.sig.c tc.sig.h tc.str.c sh.types.h tc.vers.c tc.wait.h \
         tc.who.c tc.h          tc.who.c tc.h
   SRCS+=  dotlock.c dotlock.h
 GENHDRS= ed.defns.h sh.err.h tc.const.h tc.defs.c  GENHDRS= ed.defns.h sh.err.h tc.const.h tc.defs.c
 SRCS+=  ${GENHDRS}  SRCS+=  ${GENHDRS}
   
Line 52  csh.1: tcsh.man Line 53  csh.1: tcsh.man
   
 build-tools: gethost  build-tools: gethost
   
gethost: gethost.c sh.err.h tc.const.h sh.hDEPENDOBJS+= gethost
 gethost: gethost.c sh.err.h tc.const.h sh.h ${BUILD_TOOLS_META}
         @rm -f ${.TARGET}          @rm -f ${.TARGET}
        ${CC} -o gethost ${LDFLAGS} ${CFLAGS:C/-DHAVE_ICONV//} \        ${CC:N${CCACHE_BIN}} -o gethost ${LDFLAGS} ${CFLAGS:C/-DHAVE_ICONV//} \
             ${TCSHDIR}/gethost.c              ${TCSHDIR}/gethost.c
   
 tc.defs.c: gethost ${TCSHDIR}/host.defs  tc.defs.c: gethost ${TCSHDIR}/host.defs
         @rm -f ${.TARGET}          @rm -f ${.TARGET}
         @echo "/* Do not edit this file, make creates it */" > ${.TARGET}          @echo "/* Do not edit this file, make creates it */" > ${.TARGET}
        ./gethost ${TCSHDIR}/host.defs >> ${.TARGET}        ${BTOOLSPATH:U.}/gethost ${TCSHDIR}/host.defs >> ${.TARGET}
   
 ed.defns.h: ed.defns.c  ed.defns.h: ed.defns.c
         @rm -f ${.TARGET}          @rm -f ${.TARGET}
Line 78  sh.err.h: sh.err.c Line 80  sh.err.h: sh.err.c
         grep 'ERR_' ${.ALLSRC} | grep '^#define' >> ${.TARGET}          grep 'ERR_' ${.ALLSRC} | grep '^#define' >> ${.TARGET}
         @echo '#endif /* _h_sh_err */' >> ${.TARGET}          @echo '#endif /* _h_sh_err */' >> ${.TARGET}
   
tc.const.h: tc.const.c sh.char.h config.h config_f.h sh.types.h sh.err.htc.const.h: tc.const.c sh.char.h config.h config_f.h sh.types.h sh.err.h ${BUILD_TOOLS_META}
         @rm -f ${.TARGET}          @rm -f ${.TARGET}
         @echo '/* Do not edit this file, make creates it. */' > ${.TARGET}          @echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
         @echo '#ifndef _h_tc_const' >> ${.TARGET}          @echo '#ifndef _h_tc_const' >> ${.TARGET}
         @echo '#define _h_tc_const' >> ${.TARGET}          @echo '#define _h_tc_const' >> ${.TARGET}
        ${CC} -E ${CFLAGS:C/-DHAVE_ICONV//} ${.ALLSRC} -D_h_tc_const | \        ${CC:N${CCACHE_BIN}} -E ${CFLAGS:C/-DHAVE_ICONV//} ${.ALLSRC} -D_h_tc_const | \
             grep 'Char STR' | \              grep 'Char STR' | \
             sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \              sed -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \
             sort >> ${.TARGET}              sort >> ${.TARGET}

Removed from v.1.3  
changed lines
  Added in v.1.4


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>