Download:
child 293:6635f14613ba
parent 291:923afdc60aaf
292:ad418a21d2f1
Anton Shestakov <av6@dwimlabs.net>, Mon, 30 Oct 2017 11:56:07 +0800
Makefile: split .PHONY declaration

1 файлов изменено, 3 вставок(+), 3 удалений(-) [+]
Makefile file | annotate | diff | comparison | revisions
--- a/Makefile Sat Sep 16 23:22:35 2017 +0800
+++ b/Makefile Mon Oct 30 11:56:07 2017 +0800
@@ -1,13 +1,13 @@
+.PHONY: all
all: build
+.PHONY: devel
devel:
npm update
sed -i -e 's@^#!/usr/bin/env node$$@&js@' ./node_modules/coffee-script/bin/coffee
+.PHONY: build
build:
./node_modules/.bin/coffee -o ./js/ -cm ./coffee/
-
-
-.PHONY: all devel build