Skip to content

Commit be68932

Browse files
committed
Add command to make chrome
1 parent a961bd7 commit be68932

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

Makefile

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11
src := ${wildcard src/* src/*/*}
22
platform := ${wildcard platform/* platform/*/*}
33

4+
all: firefox chrome
5+
46
firefox: dist/firefox/firefox.zip
57
echo "Firefox build complete"
68

79
dist/firefox/firefox.zip: ${src} ${platform}
8-
tools/make-firefox.sh
10+
tools/make-firefox.sh
11+
12+
chrome: dist/chrome/chrome.zip
13+
echo "Chrome build complete"
14+
15+
dist/chrome/chrome.zip: ${src} ${platform}
16+
tools/make-chrome.sh

0 commit comments

Comments
 (0)