Capitalized Lua dirname

This commit is contained in:
Bruce Hill 2020-04-18 21:19:03 -07:00
parent ea19304c4f
commit ee823ea159
5 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@ checksyntax: btui.h
$(CC) $(CFLAGS) $(CWARN) $(G) $(O) -fsyntax-only $<
clean:
@cd lua; make clean
@cd Lua; make clean
@cd C; make clean
@cd python; make clean
@ -27,9 +27,9 @@ testc:
@cd C; make test
lua:
@cd lua; make
@cd Lua; make
testlua:
@cd lua; make test
@cd Lua; make test
.PHONY: all, checksyntax, clean, c, testc, lua, testlua