1996-09-01 10:22:36 +00:00
|
|
|
# @(#)Makefile 8.4 (Berkeley) 5/5/95
|
1999-08-27 23:15:48 +00:00
|
|
|
# $FreeBSD$
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2014-05-06 04:22:01 +00:00
|
|
|
.include <src.opts.mk>
|
2013-12-11 04:09:17 +00:00
|
|
|
|
2019-01-24 23:34:51 +00:00
|
|
|
CONFGROUPS= ETC ROOT
|
|
|
|
ETC= profile
|
|
|
|
ROOT= dot.shrc dot.profile
|
|
|
|
ROOTDIR= /root
|
|
|
|
ROOTNAME_dot.shrc= .shrc
|
|
|
|
ROOTNAME_dot.profile= .profile
|
2016-02-09 16:58:50 +00:00
|
|
|
PACKAGE=runtime
|
1994-05-26 06:18:55 +00:00
|
|
|
PROG= sh
|
2004-03-18 10:55:47 +00:00
|
|
|
INSTALLFLAGS= -S
|
2011-02-08 23:18:06 +00:00
|
|
|
SHSRCS= alias.c arith_yacc.c arith_yylex.c cd.c echo.c error.c eval.c \
|
|
|
|
exec.c expand.c \
|
2010-12-21 22:47:34 +00:00
|
|
|
histedit.c input.c jobs.c kill.c mail.c main.c memalloc.c miscbltin.c \
|
2010-11-19 12:56:13 +00:00
|
|
|
mystring.c options.c output.c parser.c printf.c redir.c show.c \
|
2001-11-17 19:10:11 +00:00
|
|
|
test.c trap.c var.c
|
2013-07-25 15:08:41 +00:00
|
|
|
GENSRCS= builtins.c nodes.c syntax.c
|
2004-01-20 13:13:40 +00:00
|
|
|
GENHDRS= builtins.h nodes.h syntax.h token.h
|
2011-02-08 23:18:06 +00:00
|
|
|
SRCS= ${SHSRCS} ${GENSRCS} ${GENHDRS}
|
1996-09-01 10:22:36 +00:00
|
|
|
|
1999-09-08 15:40:46 +00:00
|
|
|
# MLINKS for Shell built in commands for which there are no userland
|
|
|
|
# utilities of the same name are handled with the associated manpage,
|
2006-04-17 17:55:11 +00:00
|
|
|
# builtin.1 in share/man/man1/.
|
1999-09-08 15:40:46 +00:00
|
|
|
|
2014-11-25 11:15:40 +00:00
|
|
|
LIBADD= edit
|
1996-09-01 10:22:36 +00:00
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
CFLAGS+=-DSHELL -I. -I${.CURDIR}
|
1996-09-01 10:27:49 +00:00
|
|
|
# for debug:
|
2010-10-13 22:18:03 +00:00
|
|
|
# DEBUG_FLAGS+= -g -DDEBUG=2 -fno-inline
|
1996-09-01 10:22:36 +00:00
|
|
|
|
2001-11-17 19:10:11 +00:00
|
|
|
.PATH: ${.CURDIR}/bltin \
|
2017-03-04 11:31:08 +00:00
|
|
|
${.CURDIR:H}/kill \
|
|
|
|
${.CURDIR:H}/test \
|
|
|
|
${SRCTOP}/usr.bin/printf
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2018-06-27 21:36:49 +00:00
|
|
|
CLEANFILES+= mknodes mksyntax
|
1997-10-05 09:40:24 +00:00
|
|
|
CLEANFILES+= ${GENSRCS} ${GENHDRS}
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2013-07-25 15:08:41 +00:00
|
|
|
build-tools: mknodes mksyntax
|
1998-07-07 01:06:58 +00:00
|
|
|
|
1997-10-05 09:40:24 +00:00
|
|
|
.ORDER: builtins.c builtins.h
|
2016-06-03 19:25:41 +00:00
|
|
|
builtins.h: .NOMETA
|
1997-05-19 00:16:27 +00:00
|
|
|
builtins.c builtins.h: mkbuiltins builtins.def
|
2012-05-24 19:48:15 +00:00
|
|
|
sh ${.CURDIR}/mkbuiltins ${.CURDIR}
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2019-06-15 17:08:13 +00:00
|
|
|
DEPENDOBJS+= mknodes mksyntax
|
2018-06-27 21:36:49 +00:00
|
|
|
mknodes mksyntax: ${BUILD_TOOLS_META}
|
1997-08-25 19:50:01 +00:00
|
|
|
|
1997-10-05 09:40:24 +00:00
|
|
|
.ORDER: nodes.c nodes.h
|
2016-06-03 19:25:41 +00:00
|
|
|
nodes.h: .NOMETA
|
1996-09-01 10:22:36 +00:00
|
|
|
nodes.c nodes.h: mknodes nodetypes nodes.c.pat
|
2016-05-09 22:21:09 +00:00
|
|
|
${BTOOLSPATH:U.}/mknodes ${.CURDIR}/nodetypes ${.CURDIR}/nodes.c.pat
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1997-10-05 09:40:24 +00:00
|
|
|
.ORDER: syntax.c syntax.h
|
2016-06-03 19:25:41 +00:00
|
|
|
syntax.h: .NOMETA
|
1994-05-26 06:18:55 +00:00
|
|
|
syntax.c syntax.h: mksyntax
|
2016-05-09 22:21:09 +00:00
|
|
|
${BTOOLSPATH:U.}/mksyntax
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1997-05-19 00:16:27 +00:00
|
|
|
token.h: mktokens
|
|
|
|
sh ${.CURDIR}/mktokens
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2017-08-02 08:14:06 +00:00
|
|
|
HAS_TESTS=
|
2017-08-02 08:35:51 +00:00
|
|
|
SUBDIR.${MK_TESTS}+= tests
|
2010-10-12 18:20:38 +00:00
|
|
|
|
2018-08-29 16:59:19 +00:00
|
|
|
beforeinstallconfig:
|
|
|
|
rm -f ${DESTDIR}/.profile
|
|
|
|
|
|
|
|
afterinstallconfig:
|
|
|
|
${INSTALL_LINK} ${TAG_ARGS} ${DESTDIR}/root/.profile ${DESTDIR}/.profile
|
|
|
|
|
1997-05-19 00:16:27 +00:00
|
|
|
.include <bsd.prog.mk>
|