# Set this to the directory where you want the files to go. BIN_DIR = /home/mats/bin all: unipad unipad: Unipad.jar Unipad.jar: Unipad.java ElementTreePanel.java javac $< jar cmf MainClass Unipad.jar *.class resources/* install: Unipad.jar @cp Unipad.jar $(BIN_DIR) @echo "#!/bin/sh" > $(BIN_DIR)/unipad @echo "java -jar $(BIN_DIR)/Unipad.jar" >> $(BIN_DIR)/unipad @chmod +x $(BIN_DIR)/unipad clean: rm -f *.class *.jar .