mirror of
https://github.com/flynx/pWiki.git
synced 2025-10-28 17:40:07 +00:00
30 lines
306 B
Makefile
Executable File
30 lines
306 B
Makefile
Executable File
|
|
|
|
|
|
|
|
|
|
bootstrap.js: scripts/bootstrap.js
|
|
node $<
|
|
|
|
|
|
|
|
.PHONY: bootstrap
|
|
bootstrap: bootstrap.js
|
|
|
|
|
|
node_modules:
|
|
npm install
|
|
|
|
|
|
dev: node_modules
|
|
cp $</ig-object/object.js lib/
|
|
cp $</ig-actions/actions.js lib/
|
|
cp $</ig-features/features.js lib/
|
|
|
|
|
|
|
|
clean:
|
|
rm -f bootstrap.js
|
|
|
|
|