# HG changeset patch # User Yoshiki Yazawa # Date 1243046455 -32400 # Node ID a56fc1ec8be5703933797985abd104518ea9f92f # Parent bf05d0b412c1d26c2ebaa8d3ed71d3d756647000 work around for that file name of chrome jar has been hard corded. diff -r bf05d0b412c1 -r a56fc1ec8be5 Makefile --- a/Makefile Sat May 23 10:54:51 2009 +0900 +++ b/Makefile Sat May 23 11:40:55 2009 +0900 @@ -1,13 +1,14 @@ +app0=googlebookmarks_incsearch app=google_bookmarks_incsearch vers=_2_0_0 all: - cd chrome; zip -r $(app).jar content skin - zip -r $(app)$(vers).xpi chrome/$(app).jar chrome.manifest install.rdf + cd chrome; zip -r $(app0).jar content skin + zip -r $(app)$(vers).xpi chrome/$(app0).jar chrome.manifest install.rdf clean: rm -f $(app)$(vers).xpi - rm -f chrome/$(app).jar + rm -f chrome/$(app0).jar mostlyclean: clean find . -name "*~" -exec rm {} ';'