mirror of
https://github.com/smogon/pokemon-showdown.git
synced 2026-03-21 17:25:10 -05:00
17 lines
234 B
Makefile
17 lines
234 B
Makefile
all:
|
|
node-waf configure build
|
|
|
|
tests:
|
|
nodejs ./test.js
|
|
|
|
install:
|
|
@mkdir -p ~/.node_libraries && cp ./build/default/hashlib.node ~/.node_libraries/hashlib.node
|
|
|
|
all: build install
|
|
|
|
tests:
|
|
@node ./test.js
|
|
|
|
clean:
|
|
@rm -rf ./build
|