Makefile - firefox-fix-web - Firefox extension: fix web
(HTM) git clone git://git.codemadness.org/firefox-fix-web
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
Makefile (137B)
---
1 .POSIX:
2
3 package: clean
4 ( cd extension; \
5 zip -r -FS ../firefox-fix-web.xpi *; \
6 cd ../ )
7
8 clean:
9 rm -f *.xpi
10
11 .PHONY: clean package