From c0031dad5168c7bbb8d6fe0fc4a2ee27f189e2ee Mon Sep 17 00:00:00 2001 From: Anthony Bentley Date: Fri, 11 Sep 2009 22:01:49 -0600 Subject: [PATCH] use [b]yacc instead of bison by default This is scratching my own itch--OpenBSD has byacc in the base distribution, whereas bison is another program to install. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 031730ed..f218d9ee 100644 --- a/Makefile +++ b/Makefile @@ -58,7 +58,7 @@ rgbfix: $(rgbfix_obj) gcc $(cflags) -DGAMEBOY -c -o $@ $< .y.c: - bison -d -o $@ $^ + yacc -d -o $@ $^ src/asm/asmy.y: src/asm/yaccprt1.y src/asm/gameboy/yaccprt2.y src/asm/yaccprt3.y src/asm/gameboy/yaccprt4.y cat $^ > $@