Use LRAMA instead of YACC

This commit is contained in:
ydah 2025-01-12 19:30:06 +09:00 committed by Yudai Takada
parent eafba0d5d3
commit ccb4ba45ed
Notes: git 2025-01-14 08:20:22 +00:00
4 changed files with 8 additions and 8 deletions

View file

@ -105,8 +105,8 @@ CC = cl -nologo
!if !defined(CPP) || "$(CPP)" == "cl"
CPP = $(CC) -E
!endif
!if !defined(YACC)
YACC = $(BASERUBY) $(top_srcdir)/tool/lrama/exe/lrama
!if !defined(LRAMA)
LRAMA = $(BASERUBY) $(top_srcdir)/tool/lrama/exe/lrama
!endif
AR = lib -nologo
PURIFY =
@ -1040,7 +1040,7 @@ s,@CC@,$(CC),;t t
s,@CPP@,$(CPP),;t t
s,@CXX@,$$(CC),;t t
s,@LD@,$$(CC),;t t
s,@YACC@,$(YACC),;t t
s,@LRAMA@,$(LRAMA),;t t
s,@RANLIB@,,;t t
s,@AR@,$(AR),;t t
s,@ARFLAGS@,$(ARFLAGS),;t t