Skip to content

Instantly share code, notes, and snippets.

@schmichael
Created March 14, 2012 18:15
Show Gist options
  • Save schmichael/2038370 to your computer and use it in GitHub Desktop.
Save schmichael/2038370 to your computer and use it in GitHub Desktop.
.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