diff --git a/Makefile b/Makefile index 5a021e1..91398b4 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ endif build: @echo Building LuaComp... - @${COMMAND} ./src/application.lua -O ./luacomp.lua + @${COMMAND} ./src/init.lua -O ./luacomp.lua clean: ifeq ($(OS),Windows_NT) diff --git a/src/application.lua b/src/application.lua index 4e843ec..b1966bc 100644 --- a/src/application.lua +++ b/src/application.lua @@ -15,7 +15,6 @@ end --#include "src/directive_provider.lua" --#include "src/cfg/minifier_providers.lua" -local argparse = require("argparse") local parser = argparse(arg[0], "LuaComp v"..LUACOMP_VERSION.."\nA preprocessor+postprocessor written in Lua.") parser:argument("input", "Input file (- for STDIN)") parser:option("-O --output", "Output file. (- for STDOUT)", "-")