From ee823ea159be61c37317fc646949bacd94cff9b1 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Sat, 18 Apr 2020 21:19:03 -0700 Subject: [PATCH] Capitalized Lua dirname --- {lua => Lua}/Makefile | 0 {lua => Lua}/btui.h | 0 {lua => Lua}/lbtui.c | 0 {lua => Lua}/test.lua | 0 Makefile | 6 +++--- 5 files changed, 3 insertions(+), 3 deletions(-) rename {lua => Lua}/Makefile (100%) rename {lua => Lua}/btui.h (100%) rename {lua => Lua}/lbtui.c (100%) rename {lua => Lua}/test.lua (100%) 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