move js to js/, fix code duplication, make post prettier on babillard

too
This commit is contained in:
Swrup 2022-02-14 17:09:29 +01:00
parent 37446d9e1f
commit f9b77948b2
13 changed files with 221 additions and 349 deletions

View file

@ -1,26 +1,26 @@
(rule
(target js_babillard.js)
(deps
(file ../../../js_babillard.bc.js))
(file ../../../js/js_babillard.bc.js))
(action
(with-stdout-to
%{target}
(cat ../../../js_babillard.bc.js))))
(cat ../../../js/js_babillard.bc.js))))
(rule
(target js_newthread.js)
(deps
(file ../../../js_newthread.bc.js))
(file ../../../js/js_newthread.bc.js))
(action
(with-stdout-to
%{target}
(cat ../../../js_newthread.bc.js))))
(cat ../../../js/js_newthread.bc.js))))
(rule
(target js_thread.js)
(deps
(file ../../../js_thread.bc.js))
(file ../../../js/js_thread.bc.js))
(action
(with-stdout-to
%{target}
(cat ../../../js_thread.bc.js))))
(cat ../../../js/js_thread.bc.js))))