squishy

Sat, 25 Jul 2009 03:11:08 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 25 Jul 2009 03:11:08 +0100
changeset 3
21a2d5205ec6
parent 2
297b51e0dba2
child 8
f62f83d9dc43
permissions
-rw-r--r--

squishy: Add some comments


-- 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

mercurial