Deleted Added
full compact
Makefile (125503) Makefile (126173)
1# @(#)Makefile 8.4 (Berkeley) 5/5/95
1# @(#)Makefile 8.4 (Berkeley) 5/5/95
2# $FreeBSD: head/bin/sh/Makefile 125503 2004-02-05 22:44:25Z ru $
2# $FreeBSD: head/bin/sh/Makefile 126173 2004-02-23 20:05:14Z johan $
3
4PROG= sh
5SHSRCS= alias.c arith.y arith_lex.l cd.c echo.c error.c eval.c exec.c expand.c \
6 histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
7 mystring.c options.c output.c parser.c redir.c show.c \
8 test.c trap.c var.c
9GENSRCS= builtins.c init.c nodes.c syntax.c
10GENHDRS= builtins.h nodes.h syntax.h token.h

--- 5 unchanged lines hidden (view full) ---

16
17DPADD= ${LIBL} ${LIBEDIT} ${LIBTERMCAP}
18LDADD= -ll -ledit -ltermcap
19
20LFLAGS= -8 # 8-bit lex scanner for arithmetic
21CFLAGS+=-DSHELL -I. -I${.CURDIR}
22# for debug:
23# CFLAGS+= -g -DDEBUG=2
3
4PROG= sh
5SHSRCS= alias.c arith.y arith_lex.l cd.c echo.c error.c eval.c exec.c expand.c \
6 histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
7 mystring.c options.c output.c parser.c redir.c show.c \
8 test.c trap.c var.c
9GENSRCS= builtins.c init.c nodes.c syntax.c
10GENHDRS= builtins.h nodes.h syntax.h token.h

--- 5 unchanged lines hidden (view full) ---

16
17DPADD= ${LIBL} ${LIBEDIT} ${LIBTERMCAP}
18LDADD= -ll -ledit -ltermcap
19
20LFLAGS= -8 # 8-bit lex scanner for arithmetic
21CFLAGS+=-DSHELL -I. -I${.CURDIR}
22# for debug:
23# CFLAGS+= -g -DDEBUG=2
24WARNS= 0
24WARNS?= 0
25WFORMAT=0
26
27.PATH: ${.CURDIR}/bltin \
28 ${.CURDIR}/../../bin/test
29
30CLEANFILES+= mkinit mkinit.o mknodes mknodes.o \
31 mksyntax mksyntax.o
32CLEANFILES+= ${GENSRCS} ${GENHDRS}

--- 32 unchanged lines hidden ---
25WFORMAT=0
26
27.PATH: ${.CURDIR}/bltin \
28 ${.CURDIR}/../../bin/test
29
30CLEANFILES+= mkinit mkinit.o mknodes mknodes.o \
31 mksyntax mksyntax.o
32CLEANFILES+= ${GENSRCS} ${GENHDRS}

--- 32 unchanged lines hidden ---