NetBSD/bin/sh/Makefile

63 lines
1.5 KiB
Makefile
Raw Normal View History

2000-12-29 19:30:31 +03:00
# $NetBSD: Makefile,v 1.51 2000/12/29 16:30:31 bjh21 Exp $
# @(#)Makefile 8.4 (Berkeley) 5/5/95
1993-03-21 12:45:37 +03:00
1999-07-09 07:05:49 +04:00
WARNS=2
YHEADER=1
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 \
test.c
1999-02-06 01:19:47 +03:00
GENSRCS=arith.c arith.h arith_lex.c builtins.c builtins.h init.c nodes.c \
nodes.h syntax.c syntax.h token.h
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
YFLAGS= -d
1997-10-10 23:47:50 +04:00
CPPFLAGS+=-DSHELL -I. -I${.CURDIR}
.PATH: ${.CURDIR}/bltin ${.CURDIR}/../../usr.bin/printf ${.CURDIR}/../test
1993-03-21 12:45:37 +03:00
CLEANFILES+= mkinit mknodes mksyntax
CLEANFILES+= ${GENSRCS} y.tab.h
token.h: mktokens
sh ${.ALLSRC}
1993-03-21 12:45:37 +03:00
builtins.c builtins.h: mkbuiltins shell.h builtins.def
sh ${.ALLSRC} ${.OBJDIR}
1993-03-21 12:45:37 +03:00
init.c: mkinit ${SHSRCS}
./${.ALLSRC}
1994-05-11 21:09:42 +04:00
nodes.c nodes.h: mknodes nodetypes nodes.c.pat
./${.ALLSRC}
1993-03-21 12:45:37 +03:00
1994-05-11 21:09:42 +04:00
syntax.c syntax.h: mksyntax
./${.ALLSRC}
mkinit: mkinit.c
${HOST_LINK.c} -o mkinit ${.IMPSRC}
mknodes: mknodes.c
${HOST_LINK.c} -o mknodes ${.IMPSRC}
.if (${MACHINE_ARCH} == "powerpc") || \
2000-12-29 19:30:31 +03:00
(${MACHINE_ARCH} == "arm32") || \
(${MACHINE_ARCH} == "arm26")
TARGET_CHARFLAG= -DTARGET_CHAR="u_int8_t"
.else
TARGET_CHARFLAG= -DTARGET_CHAR="int8_t"
.endif
mksyntax: mksyntax.c
${HOST_LINK.c} ${TARGET_CHARFLAG} -o mksyntax ${.IMPSRC}
.include <bsd.prog.mk>
${OBJS}: builtins.h nodes.h syntax.h token.h