# Makefile for the Wiring library for Processing. # David A. Mellis # 22 May 2005 # This probably won't work on your machine, but should make it # clear what you have to do to compile and install the library. all: compile compile: javac -d . -classpath /Applications/processing-0090/lib/core.jar:/Applications/processing-0090/libraries/serial/library/serial.jar *.java jar: compile jar -cvf wiring.jar org dist: jar -mkdir wiring -mkdir wiring/library cp wiring.jar wiring/library zip -r wiring.zip wiring install: dist cp -r wiring /Applications/processing-0090/libraries clean: rm -rf org wiring wiring.zip wiring.jar