1 # $NetBSD: Makefile,v 1.101 2015/05/10 20:30:54 joerg 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
-lterminfo
19 DPADD
+= ${LIBL} ${LIBEDIT} ${LIBTERMINFO}
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.
40 #CFLAGS+=-funsigned-char
41 #TARGET_CHARFLAG?= -DTARGET_CHAR="unsigned char" -funsigned-char
52 .PATH
: ${.CURDIR
}/bltin
${NETBSDSRCDIR}/bin
/test \
53 ${NETBSDSRCDIR}/usr.bin
/printf \
54 ${NETBSDSRCDIR}/bin
/kill
56 CLEANFILES
+= ${GENSRCS} ${GENHDRS} y.tab.h
61 ${SCRIPT_ENV} ${HOST_SH} ${.ALLSRC
}
63 .ORDER
: builtins.h builtins.c
64 builtins.h builtins.c
: mkbuiltins
shell.h builtins.def
66 ${SCRIPT_ENV} ${HOST_SH} ${.ALLSRC
} ${.OBJDIR
}
69 init.c
: mkinit.sh
${SHSRCS}
71 ${SCRIPT_ENV} ${HOST_SH} ${.ALLSRC
}
73 .ORDER
: nodes.h nodes.c
74 nodes.c nodes.h
: mknodes.sh nodetypes nodes.c.pat
76 ${SCRIPT_ENV} ${HOST_SH} ${.ALLSRC
} ${.OBJDIR
}
79 .if
${USETOOLS} == "yes"
80 NBCOMPATLIB
= -L
${TOOLDIR}/lib
-lnbcompat
85 .
endif # !defined(__MINIX)
87 COPTS.printf.c
= -Wno-format-nonliteral
88 COPTS.jobs.c
= -Wno-format-nonliteral
90 .
include <bsd.prog.mk
>
91 .
include <bsd.subdir.mk
>