Code: Select all
cp Fruit-2.1/src/* Marks-New-Engine/src
Code: Select all
cp Fruit-2.1/src/* Marks-New-Engine/src
Code: Select all
#!/bin/sh
sed 's/Fruit 2.1/Celka 1.0b/; s/Fabien Letouzey/Yusik Rajpov/' ./fruit_21/src/main.cpp > main.cpp
sed 's/Fruit/Celka/; s/Fabien Letouzey/Yusik Rajpov/' ./fruit_21/src/protocol.cpp > protocol.cpp
sed 's/fruit/celka/' ./fruit_21/src/Makefile > Makefile
mv main.cpp ./fruit_21/src/
mv protocol.cpp ./fruit_21/src/
mv Makefile ./fruit_21/src/
mkdir Celka && cp ./fruit_21/src/* Celka
cd Celka
make
exit 0