Servertec | iMake | ||||||||||||||||||||||||
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]()
|
iMake is a platform independent make processor written entirely in JavaTM. Using iMake developers can easily create and maintain libraries, executables and object files from source files. iMake lets developers automate site and program maintenance using make files to describe how files depend on each other and how to update files when the files it depends on change. iMake is particularly useful for projects that have many files, since only those files that have changed are regenerated. iMake does this by looking at the date and time that each dependant file before performing any operations. Syntax
{ -d identifier{=definition} } { -u identifier } { { -f{ile} makefile } } { target } Parameters
Returns
Examplemk makefile# generate html pages from templates dep = template.inc .ctf.html: pp $*.ctf $*.html all: index.html exit.html links.html index.html: index.ctf exit.html: exit.ctf $(dep) links.html: links.ctf $(dep) |
||||||||||||||||||||||||
top of page
|