NetBSD/bin/csh/Makefile

71 lines
1.9 KiB
Makefile
Raw Normal View History

2018-06-10 20:55:11 +03:00
# $NetBSD: Makefile,v 1.42 2018/06/10 17:55:11 christos Exp $
1995-03-21 12:01:59 +03:00
# @(#)Makefile 8.1 (Berkeley) 5/31/93
1994-09-21 04:10:23 +04:00
#
1993-03-21 12:45:37 +03:00
# C Shell with process control; VM/UNIX VAX Makefile
# Bill Joy UC Berkeley; Jim Kulp IIASA, Austria
#
1998-04-13 18:08:27 +04:00
# To profile, put -DPROF in DFLAGS and -pg in COPTS, and recompile.
1993-03-21 12:45:37 +03:00
.include <bsd.own.mk>
2013-07-16 21:47:43 +04:00
WARNS=6
1993-03-21 12:45:37 +03:00
PROG= csh
1994-09-21 04:10:23 +04:00
DFLAGS=-DBUILTIN -DFILEC -DNLS -DSHORT_STRINGS
# - Editor history not always aligned with shell history,
# should implement internally
# - Does not handle escaped prompts.
# - Does not do completion
.ifndef SMALLPROG
DFLAGS+=-DEDIT
.endif
1997-10-10 23:47:50 +04:00
CPPFLAGS+=-I${.CURDIR} -I. ${DFLAGS}
1993-03-21 12:45:37 +03:00
SRCS= alloc.c char.c const.c csh.c dir.c dol.c err.c exec.c exp.c file.c \
1994-09-21 04:10:23 +04:00
func.c glob.c hist.c init.c lex.c misc.c parse.c printf.c proc.c \
2011-08-28 11:49:16 +04:00
sem.c set.c str.c time.c
.PATH: ${NETBSDSRCDIR}/usr.bin/printf
1993-03-21 12:45:37 +03:00
MLINKS= csh.1 limit.1 csh.1 alias.1 csh.1 bg.1 csh.1 dirs.1 csh.1 fg.1 \
csh.1 foreach.1 csh.1 history.1 csh.1 jobs.1 csh.1 popd.1 \
csh.1 pushd.1 csh.1 rehash.1 csh.1 repeat.1 csh.1 suspend.1 \
csh.1 stop.1 csh.1 source.1
DPSRCS+= errnum.h const.h
CLEANFILES+= errnum.h const.h
1993-03-21 12:45:37 +03:00
errnum.h: err.c
${_MKTARGET_CREATE}
2003-10-19 04:14:16 +04:00
rm -f ${.TARGET}
(\
echo '/* Do not edit this file, make creates it. */' ;\
echo '#ifndef _h_sh_errnum' ;\
echo '#define _h_sh_errnum' ;\
egrep 'ERR_' ${.ALLSRC} | egrep '^#define' ;\
echo '#endif /* _h_sh_errnum */' ;\
) > ${.TARGET}
const.c: errnum.h
1993-03-21 12:45:37 +03:00
const.h: const.c
${_MKTARGET_CREATE}
2003-10-19 04:14:16 +04:00
rm -f ${.TARGET}
echo '/* Do not edit this file, make creates it. */' > ${.TARGET}
1997-10-10 23:47:50 +04:00
${CC} -E ${CPPFLAGS} ${.ALLSRC} | egrep 'Char STR' | \
${TOOL_SED} -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \
sort >> ${.TARGET}
1993-03-21 12:45:37 +03:00
2018-06-10 20:55:11 +03:00
SUBDIR.roff+=USD.doc
1994-12-18 14:42:39 +03:00
COPTS.err.c = -Wno-format-nonliteral
2011-08-14 14:53:16 +04:00
COPTS.printf.c = -Wno-format-nonliteral
COPTS.proc.c = -Wno-format-nonliteral
2011-08-28 11:49:16 +04:00
.if !empty(DFLAGS:M*EDIT)
LDADD+=-ledit -lterminfo -lutil
DPADD+=${LIBEDIT} ${LIBUTIL}
2013-01-23 02:40:31 +04:00
.else
LDADD+=-lutil
DPADD+=${LIBUTIL}
.endif
1993-03-21 12:45:37 +03:00
.include <bsd.prog.mk>
1997-10-11 13:34:07 +04:00
.include <bsd.subdir.mk>