freebsd-dev/bin/sh/Makefile

46 lines
1.1 KiB
Makefile
Raw Normal View History

# @(#)Makefile 8.4 (Berkeley) 5/5/95
# $Id: Makefile,v 1.12 1996/06/24 04:22:21 jkh Exp $
1994-05-26 06:18:55 +00:00
PROG= sh
SHSRCS= alias.c cd.c echo.c error.c eval.c exec.c expand.c \
1994-05-26 06:18:55 +00:00
histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
mystring.c options.c parser.c printf.c redir.c show.c \
trap.c output.c var.c
GENSRCS=arith.c arith_lex.c builtins.c init.c nodes.c syntax.c
SRCS= ${GENSRCS} ${SHSRCS}
DPADD+= ${LIBL} ${LIBEDIT} ${LIBTERMCAP}
LDADD+= -ll -ledit -ltermcap
1994-05-26 06:18:55 +00:00
LFLAGS= -8 # 8-bit lex scanner for arithmetic
CFLAGS+=-DSHELL -I. -I${.CURDIR}
1994-05-26 06:18:55 +00:00
.PATH: ${.CURDIR}/bltin ${.CURDIR}/../../usr.bin/printf
CLEANFILES+= builtins.h mkinit mknodes mksyntax \
nodes.h syntax.h token.h y.tab.h
CLEANFILES+= ${GENSRCS}
1994-05-26 06:18:55 +00:00
beforedepend: token.h
token.h: mktokens
sh ${.CURDIR}/mktokens
1994-05-26 06:18:55 +00:00
builtins.h builtins.c: mkbuiltins builtins.def
cd ${.CURDIR}; sh mkbuiltins ${.OBJDIR}
1994-05-26 06:18:55 +00:00
init.c: mkinit ${SHSRCS}
./mkinit ${.ALLSRC:S/^mkinit$//}
1994-05-26 06:18:55 +00:00
nodes.c nodes.h: mknodes nodetypes nodes.c.pat
1994-05-26 06:18:55 +00:00
./mknodes ${.CURDIR}/nodetypes ${.CURDIR}/nodes.c.pat
syntax.c syntax.h: mksyntax
./mksyntax
parser.o: token.h
1994-05-26 06:18:55 +00:00
.include <bsd.prog.mk>