1 # $NetBSD: Makefile,v 1.86 2009/10/29 14:21:40 christos Exp $
2 # @(#)Makefile 8.4 (Berkeley) 5/5/95
8 SHSRCS
= alias.c cd.c echo.c error.c eval.c exec.c expand.c \
9 histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
10 mystring.c options.c parser.c redir.c show.c trap.c output.c var.c \
11 test.c kill.c syntax.c
12 GENSRCS
=arith.c arith_lex.c builtins.c init.c nodes.c
13 GENHDRS
=arith.h builtins.h nodes.h token.h
14 SRCS
= ${SHSRCS} ${GENSRCS}
18 LDADD
+= -ll
-ledit
-ltermcap
19 DPADD
+= ${LIBL} ${LIBEDIT} ${LIBTERMCAP}
21 LFLAGS
= -8 # 8-bit lex scanner for arithmetic
23 # Environment for scripts executed during build.
28 # The .depend file can get references to these temporary files
29 .OPTIONAL
: lex.yy.c y.tab.c
36 CPPFLAGS
+=-DSHELL
-I.
-I
${.CURDIR
}
37 #XXX: For testing only.
39 #CFLAGS+=-funsigned-char
40 #TARGET_CHARFLAG?= -DTARGET_CHAR="unsigned char" -funsigned-char
48 .PATH
: ${.CURDIR
}/bltin
${NETBSDSRCDIR}/bin
/test \
49 ${NETBSDSRCDIR}/usr.bin
/printf \
50 ${NETBSDSRCDIR}/bin
/kill
52 CLEANFILES
+= ${GENSRCS} ${GENHDRS} y.tab.h
57 ${SCRIPT_ENV} ${HOST_SH} ${.ALLSRC
}
59 .ORDER
: builtins.h builtins.c
60 builtins.h builtins.c
: mkbuiltins
shell.h builtins.def
62 ${SCRIPT_ENV} ${HOST_SH} ${.ALLSRC
} ${.OBJDIR
}
65 init.c
: mkinit.sh
${SHSRCS}
67 ${SCRIPT_ENV} ${HOST_SH} ${.ALLSRC
}
69 .ORDER
: nodes.h nodes.c
70 nodes.c nodes.h
: mknodes.sh nodetypes nodes.c.pat
72 ${SCRIPT_ENV} ${HOST_SH} ${.ALLSRC
} ${.OBJDIR
}
75 .if
${USETOOLS} == "yes"
76 COMPATOBJDIR
!= cd
${NETBSDSRCDIR}/tools
/compat
&& ${PRINTOBJDIR}
77 NBCOMPATLIB
= -L
${COMPATOBJDIR} -lnbcompat
80 .
include <bsd.prog.mk
>