- copy a few useful cygwin scripts from the old wxwindows development branch.
This commit is contained in:
parent
e4a5dcd78a
commit
6e88962c1e
6
bochs/build/win32/cc2cpp
Executable file
6
bochs/build/win32/cc2cpp
Executable 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
6
bochs/build/win32/cpp2cc
Executable 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
6
bochs/build/win32/diffcc2cpp
Executable 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
|
Loading…
Reference in New Issue
Block a user