mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-01 12:24:14 +01:00
12 lines
243 B
Bash
Executable File
12 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# The pde.jar file may be buried inside the .app file on Mac OS X.
|
|
PDE=`find ../.. -name pde.jar`
|
|
|
|
javac -target 1.5 \
|
|
-cp "../../lib/core.jar:$PDE" \
|
|
-d bin \
|
|
src/Mangler.java
|
|
|
|
cd bin && zip -r ../tool/mangler.jar * && cd ..
|