mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-09-09 12:17:13 +00:00
- Changed to centered, fixed-width layout, it results in shorter line lengths which reads more easily. - Moved support files to separate support directory. - Removed blank lines at end of multi-parameter method prototypes.
21 lines
501 B
Bash
Executable File
21 lines
501 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# NOTE: The working directory should be the main capp directory when this script is run
|
|
#
|
|
# $1 Cappuccino Tools/Documentation directory
|
|
# $2 Generated documentation directory
|
|
|
|
# Do this if you want to use the utility functions
|
|
source "$1"/support/processor_setup.sh
|
|
|
|
# Cleanup the files we generated to feed to doxygen
|
|
processor_msg "Cleaning up generated header files..."
|
|
|
|
if [ -d AppKit.doc ]; then
|
|
rm -rf AppKit.doc
|
|
fi
|
|
|
|
if [ -d Foundation.doc ]; then
|
|
rm -rf Foundation.doc
|
|
fi
|