view makefile @ 22:fa55f4439977

fix autocomplete. less console.log Ignore-this: 302e2080d044221c430c4eb77ccd4221
author Drew Perttula <drewp@bigasterisk.com>
date Thu, 11 Jul 2013 01:05:22 -0700
parents a79279515c84
children d6a09e8efa56
line wrap: on
line source

all: bin/python static/lib/jquery-1.9.1.min.js static/lib/knockout-2.2.1.js static/lib/select2

bin/python:
	bin/pip install -r pydeps

static/lib/jquery-1.9.1.min.js:
	curl -o $@ http://code.jquery.com/jquery-1.9.1.min.js

static/lib/knockout-2.2.1.js:
	curl -o $@ http://knockoutjs.com/downloads/knockout-2.2.1.js

static/lib/select2:
	git clone git://github.com/ivaynberg/select2.git static/lib/select2
	(cd static/lib/select2; git checkout --quiet 4530e74e95)