Download:
child 13:ba58d75904e4
parent 11:082343e93ae6
12:f2a6139f2b42
Anton Shestakov <av6@dwimlabs.net>, Sat, 19 Mar 2016 10:45:04 +0800
Makefile: build target

1 файлов изменено, 8 вставок(+), 1 удалений(-) [+]
Makefile file | annotate | diff | comparison | revisions
--- a/Makefile Sat Mar 19 02:25:43 2016 +0800
+++ b/Makefile Sat Mar 19 10:45:04 2016 +0800
@@ -1,6 +1,13 @@
+all: build
+
+
devel:
npm install
sed -i -e 's@^#!/usr/bin/env node$$@#!/usr/bin/env nodejs@' ./node_modules/coffee-script/bin/coffee
-.PHONY: devel
+build:
+ ./node_modules/.bin/coffee -o ./js/ -cm ./coffee/
+
+
+.PHONY: all devel build