- copy a few useful cygwin scripts from the old wxwindows development branch.

This commit is contained in:
Bryce Denney 2002-09-03 15:49:22 +00:00
parent e4a5dcd78a
commit 6e88962c1e
3 changed files with 18 additions and 0 deletions

6
bochs/build/win32/cc2cpp Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
list=`find . -name '*.cc' | sed 's/\.cc$//'`
for i in $list; do
mv ${i}.cc ${i}.cpp
done

6
bochs/build/win32/cpp2cc Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
list=`find . -name '*.cpp' | sed 's/\.cpp$//'`
for i in $list; do
mv ${i}.cpp ${i}.cc
done

6
bochs/build/win32/diffcc2cpp Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
list=`find . -name '*.cpp' | sed 's/\.cpp$//'`
for i in $list; do
diff -u ${i}.cc ${i}.cpp
done