forked from EFForg/https-everywhere
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
16 lines (14 loc) · 316 Bytes
/
Copy pathMakefile
File metadata and controls
16 lines (14 loc) · 316 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/make -f
# this rule makes tag or branch targets
%:
./makexpi.sh $@
# this makes prerelease xpis (and is the default rule)
prerelease: pkg
./makexpi.sh
pkg:
mkdir pkg
clean:
rm -f pkg/*.xpi
rm -f src/chrome/content/rules/default.rulesets
rm -f src/defaults/rulesets.sqlite
.PHONY: clean prerelease