changeset 4:a56fc1ec8be5

work around for that file name of chrome jar has been hard corded.
author Yoshiki Yazawa <yaz@honeyplanet.jp>
date Sat, 23 May 2009 11:40:55 +0900
parents bf05d0b412c1
children 8f7e53bfe0e8
files Makefile
diffstat 1 files changed, 4 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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 {} ';'