File: make.sh

package info (click to toggle)
arduino 1%3A1.0.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 22,476 kB
  • sloc: java: 56,088; cpp: 10,050; ansic: 9,904; makefile: 1,721; xml: 468; perl: 198; sh: 153; python: 62
file content (11 lines) | stat: -rw-r--r-- 243 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
#!/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 ..