xref: /dragonfly/bin/sh/Makefile (revision 9348a738)
1# Makefile for /bin/sh
2#
3
4PROG=	sh
5INSTALLFLAGS= -S
6SHSRCS=	alias.c arith_yacc.c arith_yylex.c cd.c echo.c error.c eval.c \
7	exec.c expand.c \
8	histedit.c input.c jobs.c kill.c mail.c main.c memalloc.c miscbltin.c \
9	mystring.c options.c output.c parser.c printf.c redir.c show.c \
10	test.c trap.c var.c
11GENSRCS= builtins.c nodes.c syntax.c
12GENHDRS= builtins.h nodes.h syntax.h token.h
13SRCS= ${SHSRCS} ${GENSRCS} ${GENHDRS}
14
15# would be needed if WARNS upgraded to 3, but lets keep the stderr output
16# clean, so WARNS has been lowered to 2.
17#
18# NO_WERROR=	yes # [-Werror=clobbered] on gcc50
19WARNS?= 2
20
21# MLINKS for Shell built in commands for which there are no userland
22# utilities of the same name are handled with the associated manpage,
23# builtin.1 in share/man/man1/.
24
25CFLAGS+=-DSHELL -I. -I${.CURDIR}
26# for debug:
27# DEBUG_FLAGS+= -g -DDEBUG=2 -fno-inline
28
29.if defined(BOOTSTRAPPING)
30CFLAGS+= -DNO_HISTORY
31.  if exists(/usr/lib/libedit.a)
32DPADD= /usr/lib/libedit.a
33LDADD= -ledit
34.  elif exists(/usr/lib/libprivate_edit.a)
35DPADD= /usr/lib/libprivate_edit.a
36LDADD= -lprivate_edit
37.  else
38DPADD= ${LIBEDIT}
39LDADD= -lprivate_edit
40LDFLAGS+=	${PRIVATELIB_BLDFLAGS}
41.  endif
42.  if exists(/usr/lib/libtermcap.a)
43DPADD+= /usr/lib/libtermcap.a
44LDADD+= -ltermcap
45.  else
46DPADD+= ${LIBNCURSES}
47LDADD+= -lprivate_ncurses
48LDFLAGS+=	${PRIVATELIB_BLDFLAGS}
49.  endif
50.else
51DPADD= ${LIBEDIT} ${LIBNCURSES}
52LDADD= -lprivate_edit -lprivate_ncurses
53LDFLAGS+=	${PRIVATELIB_LDFLAGS}
54.endif
55
56
57.PATH:	${.CURDIR}/bltin \
58	${.CURDIR}/../kill \
59	${.CURDIR}/../test \
60	${.CURDIR}/../../usr.bin/printf
61
62CLEANFILES+= mknodes.nx mknodes.no \
63	mksyntax.nx mksyntax.no
64CLEANFILES+= ${GENSRCS} ${GENHDRS}
65
66build-tools: mknodes.nx mksyntax.nx
67
68.ORDER: builtins.c builtins.h
69builtins.c builtins.h: mkbuiltins builtins.def
70	sh ${.CURDIR}/mkbuiltins ${.CURDIR}
71
72# XXX this is just to stop the default .c rule being used, so that the
73# intermediate object has a fixed name.
74# XXX we have a default .c rule, but no default .o rule.
75.o:
76	${CC} ${CFLAGS} ${LDFLAGS} ${.IMPSRC} ${LDLIBS} -o ${.TARGET}
77mknodes.nx: mknodes.no
78mksyntax.nx: mksyntax.no
79
80.ORDER: nodes.c nodes.h
81nodes.c nodes.h: mknodes.nx nodetypes nodes.c.pat
82	./mknodes.nx ${.CURDIR}/nodetypes ${.CURDIR}/nodes.c.pat
83
84.ORDER: syntax.c syntax.h
85syntax.c syntax.h: mksyntax.nx
86	./mksyntax.nx
87
88token.h: mktokens
89	sh ${.CURDIR}/mktokens
90
91regress: sh
92	cd ${.CURDIR}/../../tools/regression/bin/sh && ${MAKE} SH=${.OBJDIR}/sh
93.include <bsd.prog.mk>
94