aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 12 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 5015077..936d9a4 100644
--- a/Makefile
+++ b/Makefile
@@ -1,2 +1,14 @@
1all: build package_firefox package_chrome clean
2 ./bin/build_plugin firefox chrome
3
1build: 4build:
2 ./bin/build_plugin 5 ./bin/build_plugin
6
7package_firefox: build
8 ./bin/package_plugin firefox
9
10package_chrome: build
11 ./bin/package_plugin chrome
12
13clean:
14 if test -d build; then rm -rf build; fi