squishy

Sat, 25 Jul 2009 22:05:55 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 25 Jul 2009 22:05:55 +0100
changeset 13
b93f52cbe253
parent 9
875ff34ab96c
child 14
ea4d95329ceb
permissions
-rw-r--r--

Add GetOption function for squishy files


-- Set this option, same as if user specified
-- '--executable' on the command-line. Can be 
-- disabled by user with '--no-executable'
Option "executable"

-- Output filename
Output "squish"

-- This is normal/main script
Main "squish.lua"

-- Add minify extension if asked to
if opts.with_minify then
	Module "optlex"		"minify/optlex.lua"
	Module "optparser"	"minify/optparser.lua"
	Module "llex"		"minify/llex.lua"
	Module "lparser"	"minify/lparser.lua"

	Main "minify/squish.minify.lua"
end

-- Compress Lua scripts (an excellent hack :) )
if opts.with_uglify then
	Module "llex"		"uglify/llex.lua"
	
	Main "uglify/squish.uglify.lua"
end

-- Compile output files to Lua bytecode
if opts.with_compile then
	Main "compile/squish.compile.lua"
end

mercurial