9152e1c5a7
The tested targets are the followgin ones: * tools * distribution * sets * release The remaining NetBSD targets have not been disabled nor tested *at all*. Try them at your own risk, they may reboot the earth. For all compliant Makefiles, objects and generated files are put in MAKEOBJDIR, which means you can now keep objects between two branch switching. Same for DESTDIR, please refer to build.sh options. Regarding new or modifications of Makefiles a few things: * Read share/mk/bsd.README * If you add a subdirectory, add a Makefile in it, and have it called by the parent through the SUBDIR variable. * Do not add arbitrary inclusion which crosses to another branch of the hierarchy; If you can't do without it, put a comment on why. If possible, do not use inclusion at all. * Use as much as possible the infrastructure, it is here to make life easier, do not fight it. Sets and package are now used to track files. We have one set called "minix", composed of one package called "minix-sys"
100 lines
2.8 KiB
Makefile
100 lines
2.8 KiB
Makefile
# Makefile for ash.
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
PROG= sh
|
|
BINDIR= /bin
|
|
MAN=
|
|
|
|
# Enable this line to disable command line editing
|
|
#EDIT=-DNO_HISTORY
|
|
# Enable this line to use the editline library instead of libedit
|
|
EDIT=-DEDITLINE
|
|
|
|
# Enable this line if your system does not have a <paths.h>
|
|
#NO_PATHS_H=-DNO_PATHS_H
|
|
|
|
# Enable this if you don't want job control
|
|
NO_JOBS=-DJOBS=0
|
|
MKB_NO_JOBS=-j
|
|
|
|
SRCS= alias.c arith.y arith_lex.l cd.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 output.c parser.c redir.c show.c \
|
|
trap.c var.c setmode.c
|
|
|
|
.include "${.CURDIR}/bltin/Makefile.inc"
|
|
|
|
GENSRCS= builtins.c init.c nodes.c syntax.c operators.c signames.c
|
|
GENHDRS= builtins.h nodes.h syntax.h token.h operators.h signames.h
|
|
|
|
SRCS+= ${GENSRCS}
|
|
|
|
CLEANFILES+=${GENSRCS} ${GENHDRS}
|
|
|
|
DPADD+= ${LIBL} ${LIBEDIT}
|
|
LDADD+= -ll -ledit
|
|
|
|
CPPFLAGS+= -DSHELL -D__NBSD_LIBC
|
|
CPPFLAGS+=${EDIT} ${NO_PATHS_H} ${NO_JOBS}
|
|
|
|
CPPFLAGS+= -I. -I${.CURDIR}
|
|
|
|
# A. Generate C tools used to build ash
|
|
.for tool in init nodes signames syntax
|
|
${.OBJDIR}/mk${tool}: ${.CURDIR}/mk${tool}.c
|
|
${HOST_CC} ${.ALLSRC} -o ${.TARGET}
|
|
.endfor
|
|
|
|
# B. Generates C sources from C tools
|
|
NODES_ARGS:= ${.CURDIR}/nodetypes ${.CURDIR}/nodes.c.pat
|
|
INIT_ARGS:= alias.c eval.c exec.c input.c jobs.c options.c parser.c \
|
|
redir.c trap.c var.c
|
|
|
|
.for tool in nodes signames syntax
|
|
${tool}.c ${tool}.h: ${.OBJDIR}/mk${tool}
|
|
${.OBJDIR}/mk${tool} ${${tool:tu}_ARGS}
|
|
.endfor
|
|
|
|
init.c: ${.OBJDIR}/mkinit \
|
|
alias.c eval.c exec.c input.c jobs.c options.c parser.c \
|
|
redir.c trap.c var.c
|
|
${.OBJDIR}/mkinit ${.ALLSRC:S/^${.OBJDIR}/mkinit$//}
|
|
|
|
# C. Generates C sources from shell scripts
|
|
token.h:
|
|
${.CURDIR}/mktokens.sh
|
|
|
|
builtins.c builtins.h:
|
|
${.CURDIR}/mkbuiltins.sh ${MKB_NO_JOBS} . ${.CURDIR}/shell.h ${.CURDIR}/builtins.def
|
|
|
|
operators.c operators.h:
|
|
${.CURDIR}/bltin/mkexpr.sh ${.CURDIR}/bltin/unary_op ${.CURDIR}/bltin/binary_op
|
|
|
|
# D. Generates sources from yacc/lex
|
|
LFLAGS= -8 # 8-bit lex scanner for arithmetic
|
|
|
|
YFLAGS:= -d
|
|
CLEANFILES+= arith.h arith.y.o
|
|
|
|
parser.c: token.h
|
|
y.tab.h: arith.y
|
|
arith.h: y.tab.h
|
|
arith_lex.l: arith.h
|
|
|
|
# Explicit dependencies to ensure creation when needed
|
|
# LSC FIXME Under MINIX, the build system curiously needs more help.
|
|
# is it because of the missing order tools?
|
|
expand.c: arith.h
|
|
trap.c: signames.h
|
|
cd.c complete.c eval.c exec.c expand.c jobs.c main.c options.c parser.c redir.c show.c trap.c var.c: nodes.h
|
|
eval.c exec.c expand.c input.c input.h jobs.c mystring.c output.c parser.c trap.c var.c: syntax.h
|
|
|
|
# LSC: Seems that this file is implicitly taken into account by NetBSD's make,
|
|
# still seems to be ignored / not found currently.
|
|
# It's a sad story, as it has default rules to manage yacc / lex files. So for
|
|
# a happy ending here it is explicitly included:
|
|
.include <sys.mk>
|
|
|
|
.include <bsd.prog.mk>
|
|
|