public
Description: A base class for HTTP based activities for the OLPC laptop
Homepage: https://www.socialtext.net/lukec/index.cgi?httpactivity
Clone URL: git://github.com/lukec/httpactivity.git
httpactivity / Makefile
100644 11 lines (7 sloc) 0.185 kb
1
2
3
4
5
6
7
8
9
10
11
JS_TARGET=web/xo.js
 
all: $(JS_TARGET)
 
clean:
rm -f $(JS_TARGET) *.pyc
 
web/xo.js: web/xo-code.js Makefile
cat web/jquery-1.2.3.js > $(JS_TARGET)
cat web/xo-code.js >> $(JS_TARGET)