view makefile @ 16:d44d3e4d415b

don't show other user's tags as previously-saved tags to the current user Ignore-this: 89491c15006254dbd5a67970b3834ac7
author Drew Perttula <drewp@bigasterisk.com>
date Sun, 17 Mar 2013 00:48:23 -0700
parents 4434b3dac18e
children a79279515c84
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-3.3.1

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-3.3.1:
	curl -L -o /tmp/select2.zip https://github.com/ivaynberg/select2/archive/3.3.1.zip 
	(cd static/lib; unzip /tmp/select2.zip)