@echo off echo WTA homepage WTA makefile rem Change this to the point to your project directory cd F:\WTA\WTAHOME rem You are recommended to follow this directory structure: rem rem Project directory (contains makefile) rem I rem +------Template rem I rem +------Source rem I rem +------Output rem rem If you don't, you'll need to change these: set T=template\ set S=source\ set O=output\ rem Make sure these point to the right places. set CMP=F:\WTA\COMPILE.BAT set WTA=F:\WTA\WTA.EXE echo Making homepage... rem For single source files, use the format: rem %WTA% -o {output} -t {template} -s {source} rem rem For multiple files, use the format: rem call %CMP% {output} {template} {source1} {source2} {source3} etc. rem rem You'll need to be careful to keep the names short and not use too rem many sources or you'll find that DOS trims them and you get problems. rem rem Whichever you use, you'll need to remember to put the %O%, %T% and %S% in rem if you don't give the directory specifically. %WTA% -o %O%index.htm -t %T%index.wtt -s %S%index.wts -q -c rem Add any other pages in the same way here. echo ...done pause