Updated build script to ignore clases that break the build or do not

apply to the build. The JUnit tests along with ImageIoImage and
SunJpegImage are examples.
This commit is contained in:
Robert Greene 2003-03-27 05:34:13 +00:00
parent 43ef9e45b4
commit 4289dbc9dd
1 changed files with 6 additions and 1 deletions

View File

@ -1,6 +1,11 @@
#!/bin/sh
APPLECOMMANDER_FILES=$(cd com; find . -name "*.java" -print | sed 's#^\./#com/#')
exec >$0.log 2>&1
APPLECOMMANDER_FILES=$(cd com; \
find . -name "*.java" -not -name "*Test.java" -not -name "ImageIoImage.java" \
-not -name "SunJpegImage.java" -print |
sed 's#^\./#com/#')
OPTS="-static -O3 --no-bounds-checking -funroll-loops -finline-functions \
-fkeep-inline-functions -malign-double"