diff --git a/lua/Makefile b/Lua/Makefile similarity index 100% rename from lua/Makefile rename to Lua/Makefile diff --git a/lua/btui.h b/Lua/btui.h similarity index 100% rename from lua/btui.h rename to Lua/btui.h diff --git a/lua/lbtui.c b/Lua/lbtui.c similarity index 100% rename from lua/lbtui.c rename to Lua/lbtui.c diff --git a/lua/test.lua b/Lua/test.lua similarity index 100% rename from lua/test.lua rename to Lua/test.lua diff --git a/Makefile b/Makefile index cc0e065..02dae73 100644 --- a/Makefile +++ b/Makefile @@ -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