mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 21:17:03 +00:00
22 lines
487 B
Bash
Executable File
22 lines
487 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# NOTE: The working directory should be the main capp directory when this script is run
|
|
|
|
echo "Preprocessing source files..."
|
|
|
|
if [ -d AppKit.doc ]; then
|
|
rm -rf AppKit.doc
|
|
fi
|
|
|
|
if [ -d Foundation.doc ]; then
|
|
rm -rf Foundation.doc
|
|
fi
|
|
|
|
cp -r AppKit AppKit.doc
|
|
cp -r Foundation Foundation.doc
|
|
|
|
find AppKit.doc -name *.j -exec sed -e '/@import.*/ d' -i '' {} \;
|
|
find Foundation.doc -name *.j -exec sed -e '/@import.*/ d' -i '' {} \;
|
|
|
|
exec Tools/Documentation/make_headers
|