Compiling Several Linked Files Into One File

<!--- Import tag library. --->
<cfimport taglib="./" prefix="linked" />
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
	<title>Linked File ColdFusion Custom Tags</title>
 
	<!--- Include javascript files. --->
	<linked:files
		type="javascript"
		rebuildparam="reset"
		file="#APPLICATION.Root#scripts.js"
		url="#REQUEST.WebRoot#scripts.js">
 
		<linked:file path="#APPLICATION.Root#forms.js" />
		<linked:file path="#APPLICATION.Root#util.js" />
		<linked:file path="#APPLICATION.Root#calendar.js" />
	</linked:files>
</head>
<body>
 
	<h1>
		Linked File ColdFusion Custom Tags
	</h1>
 
	<p>
		Hello World.
	</p>
 
</body>
</html>

For Cut-and-Paste