aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 936d9a4aeedc1b5ca63245b4dff3184563c0818a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
all: build package_firefox package_chrome clean
	./bin/build_plugin firefox chrome

build:
	./bin/build_plugin

package_firefox: build
	./bin/package_plugin firefox

package_chrome: build
	./bin/package_plugin chrome

clean:
	if test -d build; then rm -rf build; fi