From: Philipp M. <fi...@gm...> - 2000-10-08 20:48:02
|
Hi Chris, thanks for the help with winedit.cpp. With the file it compiled successfully. I started a new project and made compile and run, but it stopped with an error message. Here is the output, when I make in the source-directory. >> @:~/myproject/source > make echo "Translating VK files."; \ td=$(pwd); \ dirnum=0; \ for subdir in $(ls VK); do \ if ( test -d ./VK/$subdir ); then \ dirnum=$(expr $dirnum + 1); \ fi; \ done; \ echo "«$dirnum»"; \ \ for subdir in $(ls VK); do \ cd $td; \ if ( test -d ./VK/$subdir ); then \ echo "Translating in $subdir..."; \ if !(test -f ./VK/$subdir); then \ cp makefile.sub ./VK/$subdir/Makefile; \ cp ./templates/*-template ./VK/$subdir; \ cp run.sub ./VK/$subdir/run; \ chmod a+x ./VK/$subdir/run; \ fi; \ cd ./VK/$subdir && make VK -s \ || ( echo "Error in ./VK/$subdir."; exit 1 ) || exit 1; \ fi; \ done; \ echo "All *.cpp/*.h files have been rebuilt." Translating VK files. «2» Translating in CVS... cp: run.sub: Datei oder Verzeichnis nicht gefunden chmod: ./VK/CVS/run: Datei oder Verzeichnis nicht gefunden Starting translation in /home/fips/myproject/source/VK/CVS [ Started ] Looking for *.vk, *.vkc and *.vk(t)f files in this directory ... ls: *.vk: Datei oder Verzeichnis nicht gefunden Warning: No code files found! ls: *.vk*f: Datei oder Verzeichnis nicht gefunden /bin/sh: vecho: command not found make[1]: *** [find] Error 127 Error in ./VK/CVS. make: *** [VK_files] Error 1 << |