Skip to content
This repository has been archived by the owner on Oct 21, 2021. It is now read-only.

Commit

Permalink
Add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
JeffPaine committed Jul 15, 2013
1 parent 08eed8e commit f265104
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
GENERATED_FILES = \
lib.js

all: node_modules $(GENERATED_FILES)

node_modules:
npm install

lib.js: index.js
node_modules/.bin/browserify -t brfs node_modules/topojson/index.js index.js -o $@

clean:
rm -f -- $(GENERATED_FILES)
rm -rf node_modules/

0 comments on commit f265104

Please sign in to comment.