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
|
|
|
|
2002-08-19 13:56:00 +04:00
|
|
|
.include <bsd.own.mk>
|
2013-07-16 21:47:43 +04:00
|
|
|
WARNS=6
|
2002-08-19 13:56:00 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
PROG= csh
|
1994-09-21 04:10:23 +04:00
|
|
|
DFLAGS=-DBUILTIN -DFILEC -DNLS -DSHORT_STRINGS
|
2013-01-23 20:39:03 +04:00
|
|
|
# - Editor history not always aligned with shell history,
|
|
|
|
# should implement internally
|
2013-01-23 00:35:29 +04:00
|
|
|
# - Does not handle escaped prompts.
|
|
|
|
# - Does not do completion
|
2013-01-25 18:20:57 +04:00
|
|
|
.ifndef SMALLPROG
|
2013-01-23 20:39:03 +04:00
|
|
|
DFLAGS+=-DEDIT
|
2013-01-25 18:20:57 +04:00
|
|
|
.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
|
2002-08-19 13:56:00 +04:00
|
|
|
.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
|
|
|
|
|
2003-08-01 21:03:41 +04:00
|
|
|
DPSRCS+= errnum.h const.h
|
|
|
|
CLEANFILES+= errnum.h const.h
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-07-05 01:23:50 +04:00
|
|
|
errnum.h: err.c
|
2003-10-21 14:01:19 +04:00
|
|
|
${_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
|
2003-10-21 14:01:19 +04:00
|
|
|
${_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' | \
|
2008-10-26 02:27:34 +04:00
|
|
|
${TOOL_SED} -e 's/Char \([a-zA-Z0-9_]*\)\(.*\)/extern Char \1[];/' | \
|
1997-07-05 01:23:50 +04:00
|
|
|
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
|
|
|
|
2011-08-25 19:44:51 +04: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
|
|
|
|
2013-01-23 20:39:03 +04:00
|
|
|
.if !empty(DFLAGS:M*EDIT)
|
2013-01-25 23:07:14 +04:00
|
|
|
LDADD+=-ledit -lterminfo -lutil
|
2013-01-23 00:35:29 +04:00
|
|
|
DPADD+=${LIBEDIT} ${LIBUTIL}
|
2013-01-23 02:40:31 +04:00
|
|
|
.else
|
|
|
|
LDADD+=-lutil
|
|
|
|
DPADD+=${LIBUTIL}
|
2013-01-23 00:35:29 +04:00
|
|
|
.endif
|
2006-07-01 09:54:35 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
.include <bsd.prog.mk>
|
1997-10-11 13:34:07 +04:00
|
|
|
.include <bsd.subdir.mk>
|