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
|
|
|
|
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
|
2007-11-18 01:53:07 +00:00
|
|
|
WARNS?= 2
|
2003-05-02 06:24:51 +00:00
|
|
|
WFORMAT=0
|
1996-09-01 10:22:36 +00:00
|
|
|
|
2001-11-17 19:10:11 +00:00
|
|
|
.PATH: ${.CURDIR}/bltin \
|
2010-12-21 22:47:34 +00:00
|
|
|
${.CURDIR}/../kill \
|
2010-11-19 12:56:13 +00:00
|
|
|
${.CURDIR}/../test \
|
|
|
|
${.CURDIR}/../../usr.bin/printf
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2013-07-25 15:08:41 +00:00
|
|
|
CLEANFILES+= mknodes mknodes.o \
|
1998-05-06 15:33:59 +00:00
|
|
|
mksyntax mksyntax.o
|
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
|
|
|
|
1997-08-25 19:50:01 +00:00
|
|
|
# XXX this is just to stop the default .c rule being used, so that the
|
|
|
|
# intermediate object has a fixed name.
|
|
|
|
# XXX we have a default .c rule, but no default .o rule.
|
2016-04-14 21:06:10 +00:00
|
|
|
mknodes.o mksyntax.o: ${BUILD_TOOLS_META}
|
1997-08-25 19:50:01 +00:00
|
|
|
${CC} ${CFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET}
|
2016-04-14 21:06:10 +00:00
|
|
|
mknodes: mknodes.o ${BUILD_TOOLS_META}
|
|
|
|
mksyntax: mksyntax.o ${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
|
|
|
|
2013-12-11 04:09:17 +00:00
|
|
|
.if ${MK_TESTS} != "no"
|
|
|
|
SUBDIR+= tests
|
|
|
|
.endif
|
2010-10-12 18:20:38 +00:00
|
|
|
|
1997-05-19 00:16:27 +00:00
|
|
|
.include <bsd.prog.mk>
|