]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - bin/sh/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / bin / sh / Makefile
1 #       @(#)Makefile    8.4 (Berkeley) 5/5/95
2 # $FreeBSD$
3
4 .include <bsd.own.mk>
5
6 PROG=   sh
7 INSTALLFLAGS= -S
8 SHSRCS= alias.c arith_yacc.c arith_yylex.c cd.c echo.c error.c eval.c \
9         exec.c expand.c \
10         histedit.c input.c jobs.c kill.c mail.c main.c memalloc.c miscbltin.c \
11         mystring.c options.c output.c parser.c printf.c redir.c show.c \
12         test.c trap.c var.c
13 GENSRCS= builtins.c nodes.c syntax.c
14 GENHDRS= builtins.h nodes.h syntax.h token.h
15 SRCS= ${SHSRCS} ${GENSRCS} ${GENHDRS}
16
17 # MLINKS for Shell built in commands for which there are no userland
18 # utilities of the same name are handled with the associated manpage,
19 # builtin.1 in share/man/man1/.
20
21 DPADD= ${LIBEDIT} ${LIBTERMCAP}
22 LDADD= -ledit -ltermcap
23
24 CFLAGS+=-DSHELL -I. -I${.CURDIR}
25 # for debug:
26 # DEBUG_FLAGS+= -g -DDEBUG=2 -fno-inline
27 WARNS?= 2
28 WFORMAT=0
29
30 .PATH:  ${.CURDIR}/bltin \
31         ${.CURDIR}/../kill \
32         ${.CURDIR}/../test \
33         ${.CURDIR}/../../usr.bin/printf
34
35 CLEANFILES+= mknodes mknodes.o \
36         mksyntax mksyntax.o
37 CLEANFILES+= ${GENSRCS} ${GENHDRS}
38
39 build-tools: mknodes mksyntax
40
41 .ORDER: builtins.c builtins.h
42 builtins.c builtins.h: mkbuiltins builtins.def
43         sh ${.CURDIR}/mkbuiltins ${.CURDIR}
44
45 # XXX this is just to stop the default .c rule being used, so that the
46 # intermediate object has a fixed name.
47 # XXX we have a default .c rule, but no default .o rule.
48 .o:
49         ${CC} ${CFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET}
50 mknodes: mknodes.o
51 mksyntax: mksyntax.o
52
53 .ORDER: nodes.c nodes.h
54 nodes.c nodes.h: mknodes nodetypes nodes.c.pat
55         ./mknodes ${.CURDIR}/nodetypes ${.CURDIR}/nodes.c.pat
56
57 .ORDER: syntax.c syntax.h
58 syntax.c syntax.h: mksyntax
59         ./mksyntax
60
61 token.h: mktokens
62         sh ${.CURDIR}/mktokens
63
64 .if ${MK_TESTS} != "no"
65 SUBDIR+=    tests
66 .endif
67
68 .include <bsd.prog.mk>