mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2025-08-15 14:27:39 +00:00
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:
@@ -1,6 +1,11 @@
|
|||||||
#!/bin/sh
|
#!/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 \
|
OPTS="-static -O3 --no-bounds-checking -funroll-loops -finline-functions \
|
||||||
-fkeep-inline-functions -malign-double"
|
-fkeep-inline-functions -malign-double"
|
||||||
|
Reference in New Issue
Block a user