44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.43 1998/04/19 05:22:08 cgd Exp $
|
|
# @(#)Makefile 8.4 (Berkeley) 5/5/95
|
|
|
|
PROG= sh
|
|
SHSRCS= alias.c cd.c echo.c error.c eval.c exec.c expand.c \
|
|
histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
|
|
mystring.c options.c parser.c redir.c show.c trap.c output.c var.c
|
|
GENSRCS=arith.c arith_lex.c builtins.c builtins.h init.c nodes.c nodes.h \
|
|
syntax.c syntax.h token.h
|
|
SRCS= ${SHSRCS} ${GENSRCS}
|
|
|
|
LDADD+= -ll -ledit -ltermcap
|
|
DPADD+= ${LIBL} ${LIBEDIT} ${LIBTERMCAP}
|
|
|
|
LFLAGS= -8 # 8-bit lex scanner for arithmetic
|
|
YFLAGS= -d
|
|
|
|
CPPFLAGS+=-DSHELL -I. -I${.CURDIR}
|
|
|
|
.PATH: ${.CURDIR}/bltin ${.CURDIR}/../../usr.bin/printf
|
|
|
|
CLEANFILES+= mkinit mknodes mksyntax
|
|
CLEANFILES+= mkinit.o mknodes.o mksyntax.o
|
|
CLEANFILES+= ${GENSRCS} y.tab.h
|
|
|
|
token.h: mktokens
|
|
sh ${.ALLSRC}
|
|
|
|
builtins.c builtins.h: mkbuiltins shell.h builtins.def
|
|
sh ${.ALLSRC} ${.OBJDIR}
|
|
|
|
init.c: mkinit ${SHSRCS}
|
|
./${.ALLSRC}
|
|
|
|
nodes.c nodes.h: mknodes nodetypes nodes.c.pat
|
|
./${.ALLSRC}
|
|
|
|
syntax.c syntax.h: mksyntax
|
|
./${.ALLSRC}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
${OBJS}: builtins.h nodes.h syntax.h token.h
|