Mercurial > nightly_tester_tools
changeset 3:bbeace809d92
added Makefile
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Tue, 02 Dec 2008 20:43:43 +0900 |
parents | 472a16863ecc |
children | 8aa443d1e395 |
files | Makefile |
diffstat | 1 files changed, 15 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Tue Dec 02 20:43:43 2008 +0900 @@ -0,0 +1,15 @@ +app=nightly_tester_tools +vers=_2_0_2 +jarname=nightly + +all: + cd chrome; zip -r $(jarname).jar content locale skin + zip -r $(app)$(vers).xpi chrome/$(jarname).jar install.rdf + +clean: + rm -f $(app)$(vers).xpi + rm -f chrome/$(jarname).jar + +mostlyclean: clean + find . -name "*~" -exec rm {} ';' + find . -name "#*#" -exec rm {} ';'