Home | History | Annotate | Line # | Download | only in sh
Makefile revision 1.38
      1 #	$NetBSD: Makefile,v 1.38 1998/03/29 09:27:40 christos Exp $
      2 #	@(#)Makefile	8.4 (Berkeley) 5/5/95
      3 
      4 PROG=	sh
      5 SHSRCS=	alias.c cd.c echo.c error.c eval.c exec.c expand.c \
      6 	histedit.c input.c jobs.c mail.c main.c memalloc.c miscbltin.c \
      7 	mystring.c options.c parser.c redir.c show.c trap.c output.c var.c
      8 GENSRCS=arith.c arith_lex.c builtins.c builtins.h init.c nodes.c nodes.h \
      9 	syntax.c syntax.h token.h
     10 SRCS=	${SHSRCS} ${GENSRCS}
     11 
     12 LDADD+=	-ll -ledit -ltermcap
     13 DPADD+=	${LIBL} ${LIBEDIT} ${LIBTERMCAP}
     14 
     15 LFLAGS= -8	# 8-bit lex scanner for arithmetic
     16 
     17 CPPFLAGS+=-DSHELL -I. -I${.CURDIR}
     18 
     19 # XXX
     20 .if (${MACHINE_ARCH} == "powerpc")
     21 CFLAGS+= -w
     22 .endif
     23 
     24 .PATH:	${.CURDIR}/bltin ${.CURDIR}/../../usr.bin/printf
     25 
     26 CLEANFILES+= mkinit mknodes mksyntax
     27 CLEANFILES+= mkinit.o mknodes.o mksyntax.o
     28 CLEANFILES+= ${GENSRCS} y.tab.h
     29 
     30 token.h: mktokens
     31 	sh ${.ALLSRC}
     32 
     33 builtins.c builtins.h: mkbuiltins shell.h builtins.def
     34 	sh ${.ALLSRC} ${.OBJDIR}
     35 
     36 init.c: mkinit ${SHSRCS}
     37 	${.ALLSRC}
     38 
     39 nodes.c nodes.h: mknodes nodetypes nodes.c.pat
     40 	${.ALLSRC}
     41 
     42 syntax.c syntax.h: mksyntax
     43 	${.ALLSRC}
     44 
     45 .include <bsd.prog.mk>
     46 
     47 ${OBJS}: builtins.h nodes.h syntax.h token.h
     48