summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNick White <git@njw.me.uk>2010-11-13 18:54:00 +0000
committerNick White <git@njw.me.uk>2010-11-13 18:54:00 +0000
commit3d293ecb997547ce48ab5ee3c6a83effddbbb0ae (patch)
tree87553f863bbd48a8268ccbebd71a3a7783c720e0 /Makefile
parent6184d6bdac39e3a1f2e72ce180db40cb896724cf (diff)
Rename to simplyread to avoid name clash
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 10 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 026015b..1038850 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
-NAME = readable
+NAME = simplyread
VERSION = 0.2
index.html: doap.ttl README webheader.html
@echo making webpage
@cat < webheader.html > $@
@smu < README >> $@
- @echo '<h3><a href="$(NAME)-$(VERSION).tar.bz2">Download Readable $(VERSION)</a><br />' >> $@
+ @echo '<h3><a href="$(NAME)-$(VERSION).tar.bz2">Download SimplyRead $(VERSION)</a><br />' >> $@
@echo '<a href="$(NAME)-$(VERSION).tar.bz2.sig">GPG signature</a></h3>' >> $@
- @echo '<h3><a href="$(NAME)-$(VERSION).xpi">Readable $(VERSION) for Firefox</a><br />' >> $@
+ @echo '<h3><a href="$(NAME)-$(VERSION).xpi">SimplyRead $(VERSION) for Firefox</a><br />' >> $@
@echo '<a href="$(NAME)-$(VERSION).xpi.sig">GPG signature</a></h3>' >> $@
- @echo '<h3><a href="$(NAME)-$(VERSION).crx">Readable $(VERSION) for Chromium</a><br />' >> $@
+ @echo '<h3><a href="$(NAME)-$(VERSION).crx">SimplyRead $(VERSION) for Chromium</a><br />' >> $@
@echo '<a href="$(NAME)-$(VERSION).xpi.crx">GPG signature</a></h3>' >> $@
@echo '<hr />' >> $@
@sh summary.sh doap.ttl | smu >> $@
@@ -17,7 +17,7 @@ index.html: doap.ttl README webheader.html
dist:
@mkdir -p $(NAME)-$(VERSION)
- @cp readable.js COPYING INSTALL README $(NAME)-$(VERSION)
+ @cp simplyread.js COPYING INSTALL README $(NAME)-$(VERSION)
@tar -c $(NAME)-$(VERSION) | bzip2 -c > $(NAME)-$(VERSION).tar.bz2
@gpg -b < $(NAME)-$(VERSION).tar.bz2 > $(NAME)-$(VERSION).tar.bz2.sig
@rm -rf $(NAME)-$(VERSION)
@@ -25,12 +25,12 @@ dist:
@ln -sf $(NAME)-$(VERSION).tar.bz2.sig latest.tar.bz2.sig
@echo $(NAME)-$(VERSION).tar.bz2 $(NAME)-$(VERSION).tar.bz2.sig
-xpi: readable.js gecko/install.rdf gecko/chrome.manifest gecko/chrome/content/readable.xul gecko/chrome/content/icon.svg
+xpi: simplyread.js gecko/install.rdf gecko/chrome.manifest gecko/chrome/content/simplyread.xul gecko/chrome/content/icon.svg
@rm -rf $(NAME)-$(VERSION).xpi gecko-build
@mkdir -p gecko-build/chrome/content
@cp COPYING gecko/chrome.manifest gecko-build/
- @cp gecko/chrome/content/readable.xul gecko-build/chrome/content/
- @cp readable.js gecko-build/chrome/content/readable.js
+ @cp gecko/chrome/content/simplyread.xul gecko-build/chrome/content/
+ @cp simplyread.js gecko-build/chrome/content/simplyread.js
@rsvg gecko/chrome/content/icon.svg gecko-build/chrome/content/icon.png
@sed "s/VERSION/$(VERSION)/g" < gecko/install.rdf > gecko-build/install.rdf
@cd gecko-build; zip -r ../$(NAME)-$(VERSION).xpi . 1>/dev/null
@@ -38,10 +38,10 @@ xpi: readable.js gecko/install.rdf gecko/chrome.manifest gecko/chrome/content/re
@rm -rf gecko-build
@echo $(NAME)-$(VERSION).xpi $(NAME)-$(VERSION).xpi.sig
-crx: readable.js chromium/icon.svg chromium/manifest.json chromium/background.html
+crx: simplyread.js chromium/icon.svg chromium/manifest.json chromium/background.html
@rm -rf chromium-build
@mkdir chromium-build
- @cp COPYING readable.js chromium/background.html chromium-build/
+ @cp COPYING simplyread.js chromium/background.html chromium-build/
@rsvg chromium/icon.svg chromium-build/icon.png
@sed "s/VERSION/$(VERSION)/g" < chromium/manifest.json > chromium-build/manifest.json
@chromium-browser --pack-extension=chromium-build