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
18 lines (16 loc) · 389 Bytes
/
Copy pathMakefile
File metadata and controls
18 lines (16 loc) · 389 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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 -rf pkg/xpi-amo/ pkg/xpi-eff/
rm -f pkg/*.xpi
rm -f pkg/rulesets.unvalidated.sqlite
rm -f src/chrome/content/rules/default.rulesets
rm -f src/defaults/rulesets.sqlite
.PHONY: clean prerelease