diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 38 |
1 files changed, 20 insertions, 18 deletions
diff --git a/Makefile.in b/Makefile.in index 35e9692..cf178e1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,22 +1,22 @@ -# GNU LibreJS - A browser add-on to block nonfree nontrivial JavaScript. -# +# GNU LibreJSXUL - A browser add-on to block nonfree nontrivial JavaScript. +# # Copyright (C) 2011, 2012, 2014 Loic J. Duros # Copyright (C) 2014, 2015 Nik Nyby # -# This file is part of GNU LibreJS. +# This file is part of GNU LibreJSXUL. # -# GNU LibreJS is free software: you can redistribute it and/or modify +# GNU LibreJSXUL is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # -# GNU LibreJS is distributed in the hope that it will be useful, +# GNU LibreJSXUL is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License -# along with GNU LibreJS. If not, see <http://www.gnu.org/licenses/>. +# along with GNU LibreJSXUL. If not, see <http://www.gnu.org/licenses/>. SHELL := /bin/bash @@ -45,9 +45,9 @@ TEXI2PDF = @TEXI2PDF@ INSTALL = @INSTALL@ INSTALL_DATA = ${INSTALL} -m644 -D INSTALL_MSG = "\ -Depending on your version of the Mozilla-browser, if LibreJS is not \ +Depending on your version of the Mozilla-browser, if LibreJSXUL is not \ enabled already, you may, inside your Mozilla-browser, need to go in \ -the menu in Tools > Add-ons and click enable where you see LibreJS. \ +the menu in Tools > Add-ons and click enable where you see LibreJSXUL. \ " JPM_ARGS = @@ -56,15 +56,15 @@ all: xpi install: xpi info $(NORMAL_INSTALL) - $(INSTALL_DATA) librejs.xpi $(DESTDIR)$(extdir)/jid1-KtlZuoiikVfFew@jetpack.xpi + $(INSTALL_DATA) librejsxul.xpi $(DESTDIR)$(extdir)/jid1-KtlZuoiikVfFew@jetpack.xpi $(POST_INSTALL) - -if test -f doc/librejs.info; then d=.; \ + -if test -f doc/librejsxul.info; then d=.; \ else d=$(srcdir); fi; \ - $(INSTALL_DATA) $$d/doc/librejs.info $(DESTDIR)$(infodir)/librejs.info; \ + $(INSTALL_DATA) $$d/doc/librejsxul.info $(DESTDIR)$(infodir)/librejsxul.info; \ if $(SHELL) -c 'install-info --version' \ >/dev/null 2>&1; then \ install-info --dir-file=$(DESTDIR)$(infodir)/dir \ - $(DESTDIR)$(infodir)/librejs.info; \ + $(DESTDIR)$(infodir)/librejsxul.info; \ else true; fi @echo $(INSTALL_MSG) @@ -82,13 +82,15 @@ uninstall: @rm -rf $(DESTDIR)$(extdir) clean: - @rm -f librejs.xpi + @rm -f librejsxul.xpi + @rm -rf auom4te.cache + @find . -name "*.info" -delete distclean: clean @rm -rf autom4te.cache @rm -f config.log @rm -f config.status - @rm -f $(srcdir)/doc/librejs.info + @rm -f $(srcdir)/doc/librejsxul.info @rm -f $(srcdir)/doc/manual/librejs.html @rm -f $(srcdir)/doc/manual/librejs.html.gz @rm -f $(srcdir)/doc/manual/librejs.pdf @@ -99,15 +101,15 @@ distclean: clean dist: -info: doc/librejs.info - cd doc && gendocs.sh --email bug-librejs@gnu.org librejs "GNU LibreJS Manual" +info: + cd doc && find . -type f -exec makeinfo {} \; jpm: npm i jpm -xpi: librejs.xpi +xpi: librejsxul.xpi -librejs.xpi: jpm +librejsxul.xpi: jpm npm i jpm xpi |