NetBSD/bin/sh/Makefile

66 lines
1.5 KiB
Makefile
Raw Normal View History

1997-05-07 00:44:56 +04:00
# $NetBSD: Makefile,v 1.27 1997/05/06 20:44:59 gwr Exp $
# @(#)Makefile 8.4 (Berkeley) 5/5/95
1993-03-21 12:45:37 +03:00
PROG= sh
SHSRCS= alias.c cd.c echo.c error.c eval.c exec.c expand.c \
1994-05-11 21:09:42 +04:00
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 init.c nodes.c syntax.c
SRCS= ${SHSRCS} ${GENSRCS}
1994-05-13 03:55:56 +04:00
LDADD+= -ll -ledit -ltermcap
1995-06-11 00:19:40 +04:00
DPADD+= ${LIBL} ${LIBEDIT} ${LIBTERMCAP}
1994-05-11 21:09:42 +04:00
LFLAGS= -8 # 8-bit lex scanner for arithmetic
1993-03-21 12:45:37 +03:00
CFLAGS+=-DSHELL -I. -I${.CURDIR}
# XXX
.if (${MACHINE_ARCH} == "powerpc")
CFLAGS+= -w
.endif
1997-05-07 00:44:56 +04:00
# echo.c
.PATH.c: ${.CURDIR}/bltin
# printf.c
.PATH.c: ${.CURDIR}/../../usr.bin/printf
1993-03-21 12:45:37 +03:00
CLEANFILES+= builtins.h mkinit mknodes mksyntax \
nodes.h syntax.h token.h y.tab.h
CLEANFILES+= ${GENSRCS}
1995-10-22 03:15:02 +03:00
beforedepend: token.h
token.h: mktokens
1993-03-21 12:45:37 +03:00
sh ${.CURDIR}/mktokens
builtins.h builtins.c: mkbuiltins builtins.def
cd ${.CURDIR}; sh mkbuiltins ${.OBJDIR}
1993-03-21 12:45:37 +03:00
init.c: mkinit ${SHSRCS}
./mkinit ${.ALLSRC:S/^mkinit$//}
1994-05-11 21:09:42 +04:00
nodes.c nodes.h: mknodes nodetypes nodes.c.pat
1993-03-21 12:45:37 +03:00
./mknodes ${.CURDIR}/nodetypes ${.CURDIR}/nodes.c.pat
1994-05-11 21:09:42 +04:00
syntax.c syntax.h: mksyntax
./mksyntax
parser.o: token.h
1994-05-11 21:09:42 +04:00
mkinit: mkinit.c
${HOST_COMPILE.c} ${.CURDIR}/mkinit.c
${HOST_LINK.c} -o ${.TARGET} mkinit.o
mknodes: mknodes.c
${HOST_COMPILE.c} ${.CURDIR}/mknodes.c
${HOST_LINK.c} -o ${.TARGET} mknodes.o
mksyntax: mksyntax.c
${HOST_COMPILE.c} ${.CURDIR}/mksyntax.c
${HOST_LINK.c} -o ${.TARGET} mksyntax.o
1994-05-11 21:09:42 +04:00
.include <bsd.prog.mk>
${OBJS}: builtins.h nodes.h syntax.h