mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2024-12-22 08:30:35 +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:
parent
43ef9e45b4
commit
4289dbc9dd
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user