keybase-bjson-client
Version:
A wrapper around request that uses BJSON encoding
32 lines (20 loc) • 393 B
Plain Text
default: build
all: build
ICED=node_modules/.bin/iced
BUILD_STAMP=build-stamp
TEST_STAMP=test-stamp
lib/%.js: src/%.iced
$(ICED) -I node -c -o `dirname $@` $<
$(BUILD_STAMP): \
lib/main.js \
lib/request.js
date > $@
clean:
find lib -type f -name *.js -exec rm {} \;
test:
cd test && iced run.iced
build: $(BUILD_STAMP)
setup:
npm install -d
test: