forked from Leaflet/Leaflet.fullscreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
27 lines (20 loc) · 778 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# See the README for installation instructions.
UGLIFY = node_modules/.bin/uglifyjs
all: \
$(shell npm install && mkdir -p dist) \
dist/leaflet.fullscreen.css \
dist/Leaflet.fullscreen.js \
dist/Leaflet.fullscreen.min.js \
dist/fullscreen.png
clean:
rm -f dist/*
dist/fullscreen.png: src/fullscreen.png
cp src/fullscreen.png dist/fullscreen.png
cp src/[email protected] dist/[email protected]
dist/leaflet.fullscreen.css: src/leaflet.fullscreen.css
cp src/leaflet.fullscreen.css dist/leaflet.fullscreen.css
dist/Leaflet.fullscreen.js: src/Leaflet.fullscreen.js
cp src/Leaflet.fullscreen.js dist/Leaflet.fullscreen.js
dist/Leaflet.fullscreen.min.js: dist/Leaflet.fullscreen.js
$(UGLIFY) dist/Leaflet.fullscreen.js > dist/Leaflet.fullscreen.min.js
.PHONY: clean