From 8268127a2d777de0f6097ec7d908632c1eb9d1be Mon Sep 17 00:00:00 2001 From: Tormod Volden Date: Mon, 16 May 2016 22:27:07 +0200 Subject: [PATCH] MWC: Add expr and find to Makefile.6809 Signed-off-by: Tormod Volden --- Applications/MWC/cmd/Makefile.6809 | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Applications/MWC/cmd/Makefile.6809 b/Applications/MWC/cmd/Makefile.6809 index 68400cfb..142fefdb 100644 --- a/Applications/MWC/cmd/Makefile.6809 +++ b/Applications/MWC/cmd/Makefile.6809 @@ -15,7 +15,7 @@ CRT0 = ../../../Library/libs/crt0_6809.o .SUFFIXES: .c .o -SRCS = ac.c almanac.c at.c calendar.c col.c deroff.c m4.c moo.c pr.c tar.c test.c ttt.c +SRCS = ac.c almanac.c at.c calendar.c col.c deroff.c expr.c find.c m4.c moo.c pr.c tar.c test.c ttt.c OBJS = $(SRCS:.c=.o) @@ -30,6 +30,12 @@ $(APPS): $(CRT0) %: %.o $(LINKER) -o $@ $(LINKER_OPT) $(CRT0) $< +expr.c: expr.y + byacc -o expr.c expr.y + +find.c: find.y + byacc -o find.c find.y + sizes: $(APPS) ls -l $(APPS) > size.report -- 2.34.1