zhanmingkan
2022-05-14 0fc43fe898d14895c97427801293edfb3a0c5bf1
1
2
3
4
5
6
7
8
9
10
11
12
13
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/