Deleted Added
full compact
Makefile (149046) Makefile (157811)
1# @(#)Makefile 8.4 (Berkeley) 5/5/95
1# @(#)Makefile 8.4 (Berkeley) 5/5/95
2# $FreeBSD: head/bin/sh/Makefile 149046 2005-08-14 07:46:56Z stefanf $
2# $FreeBSD: head/bin/sh/Makefile 157811 2006-04-17 17:55:11Z schweikh $
3
4PROG= sh
5INSTALLFLAGS= -S
6SHSRCS= alias.c arith.y arith_lex.l cd.c echo.c error.c eval.c exec.c expand.c \
7 histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
8 mystring.c options.c output.c parser.c redir.c show.c \
9 test.c trap.c var.c
10GENSRCS= builtins.c init.c nodes.c syntax.c
11GENHDRS= builtins.h nodes.h syntax.h token.h
12SRCS= ${SHSRCS} ${GENSRCS} ${GENHDRS} y.tab.h
13
14# MLINKS for Shell built in commands for which there are no userland
15# utilities of the same name are handled with the associated manpage,
3
4PROG= sh
5INSTALLFLAGS= -S
6SHSRCS= alias.c arith.y arith_lex.l cd.c echo.c error.c eval.c exec.c expand.c \
7 histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
8 mystring.c options.c output.c parser.c redir.c show.c \
9 test.c trap.c var.c
10GENSRCS= builtins.c init.c nodes.c syntax.c
11GENHDRS= builtins.h nodes.h syntax.h token.h
12SRCS= ${SHSRCS} ${GENSRCS} ${GENHDRS} y.tab.h
13
14# MLINKS for Shell built in commands for which there are no userland
15# utilities of the same name are handled with the associated manpage,
16# builtin.1 in share/man/man1/.
16# builtin.1 in share/man/man1/.
17
18DPADD= ${LIBL} ${LIBEDIT} ${LIBTERMCAP}
19LDADD= -ll -ledit -ltermcap
20
21LFLAGS= -8 # 8-bit lex scanner for arithmetic
22CFLAGS+=-DSHELL -I. -I${.CURDIR}
23# for debug:
24# CFLAGS+= -g -DDEBUG=2

--- 41 unchanged lines hidden ---
17
18DPADD= ${LIBL} ${LIBEDIT} ${LIBTERMCAP}
19LDADD= -ll -ledit -ltermcap
20
21LFLAGS= -8 # 8-bit lex scanner for arithmetic
22CFLAGS+=-DSHELL -I. -I${.CURDIR}
23# for debug:
24# CFLAGS+= -g -DDEBUG=2

--- 41 unchanged lines hidden ---