# make script used to create a config file for windowsuseCwd;# get current working directory$pwd=cwd();# create config fileopen(FILE,">makeconfig")||die"Cannot create file makeconfig!";printFILE"DOXYGEN = $pwd\n";printFILE"TMAKEPATH = $pwd\\tmake\\lib\\win32-msvc\n";printFILE"TMAKE = $pwd\\tmake\\bin\\tmake\n";printFILE"MAKE = nmake\n";printFILE"PERL = perl\n";printFILE"RM = del /s /q\n";printFILE"VERSION = ";# copy contents of VERSION file to FILEopen(VERFILE,"<VERSION")||die"Cannot open file VERSION for reading!";while(<VERFILE>){printFILE$_;}closeVERFILE;closeFILE;