Created
March 14, 2012 18:15
-
-
Save schmichael/2038370 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .PHONY: compile palm | |
| PALMC = bin/palmc | |
| PIP = bin/pip | |
| compile: | |
| mvn clean compile | |
| $(PIP): | |
| # This is one way to install pip :| | |
| virtualenv . | |
| $(PALMC): $(PIP) | |
| $(PIP) install -Ue git+https://github.com/bumptech/palm.git#egg=palm | |
| palm: compile $(PALMC) | |
| $(PALMC) src/main/resources/ src/main/python |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment