diff options
author | Evan Prodromou <evan@status.net> | 2010-12-09 11:27:55 -0500 |
---|---|---|
committer | Evan Prodromou <evan@status.net> | 2010-12-09 11:27:55 -0500 |
commit | 2f2c47eca98d493b18eaf9f70fee56c762865f89 (patch) | |
tree | c6014e580b165a4e5710bb1df28dd1f8799d862c /plugins/Mapstraction/Makefile | |
parent | b8b5b87c4c106f59e346ca20e45458192f68a744 (diff) | |
parent | 99f3964394e18af6c139c5a1c804ced727e5b1a4 (diff) |
Merge branch '0.9.x' into activityatompub
Diffstat (limited to 'plugins/Mapstraction/Makefile')
-rw-r--r-- | plugins/Mapstraction/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/plugins/Mapstraction/Makefile b/plugins/Mapstraction/Makefile new file mode 100644 index 000000000..3b13135ee --- /dev/null +++ b/plugins/Mapstraction/Makefile @@ -0,0 +1,14 @@ +.fake: clean all + +TARGETS=usermap-mxn-openlayers.min.js + +CORE=js/mxn.js js/mxn.core.js +USERMAP=usermap.js + +all: $(TARGETS) + +clean: + rm -f $(TARGETS) + +usermap-mxn-openlayers.min.js: $(CORE) js/mxn.openlayers.core.js $(USERMAP) + cat $+ | yui-compressor -o $@ --type=js |