# This file is part of Haketilo # # Copyright (C) 2021, jahoti # # This program is free software: you can redistribute it and/or modify # it under the terms of the CC0 1.0 Universal License as published by # the Creative Commons Corporation. # # This program 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 # CC0 1.0 Universal License for more details. SHELL = /bin/sh VPATH = <> version = <> extension_files = background/ common/ content/ html/ licenses/ \ copyright default_settings.json manifest.json metafiles = build.sh configure Makefile.in process_html_file.sh README.txt \ re-generate_icons.sh shell_utils.sh upload_amo.sh write_makefile.sh # Configuration goes here # The default target: placed up here default: $(default_target) .PHONY: mozilla chromium \ all build_all build_all.zip all_zip \ default build zip \ install install-html install-dvi install-pdf install-ps uninstall \ install-strip clean distclean mostlyclean maintainer-clean TAGS info \ dvi html pdf ps dist check installcheck installdirs # core files icons/haketilo16.png: icons/haketilo.svg cd "$(srcdir)" && ./re-generate_icons.sh # Use haketilo16.png as an "index" for all the icon PNGs # browser-specific targets all: mozilla chromium mozilla: build_mozilla build_mozilla.zip chromium: build_chromium build_chromium.zip build: build_$(default_target)/ build_all/: build_mozilla/ build_chromium/ zip: build_$(default_target).zip build_all.zip all_zip: build_mozilla.zip build_chromium.zip build_% build_%/: $(extension_files) icons/haketilo16.png $(srcdir)/build.sh $* $(srcdir) $(UPDATE_URL) build_%.zip: build_%/ cd $< && zip -q -r ../$@ * # helper targets clean mostlyclean: rm -rf build_mozilla build_chromium haketilo-$(version) rm -f build_mozilla.zip build_chromium.zip haketilo-$(version).tar.gz distclean: clean rm -f Makefile config.status record.conf maintainer-clean: distclean @echo 'This command is intended for maintainers to use; it' @echo 'deletes files that may need special tools to rebuild.' rm -f "$(srcdir)"/icons/*.png dist: $(extension_files) $(metafiles) icons/haketilo16.png test -d haketilo-$(version) || mkdir haketilo-$(version) for file in $(extension_files) $(metafiles) icons/; do \ cp -R "$(srcdir)"/$$file haketilo-$(version); \ done tar cf haketilo-$(version).tar haketilo-$(version) gzip haketilo-$(version).tar # Files for constructing the makefile Makefile: config.status Makefile.in record.conf ./config.status config.status: write_makefile.sh cp "$(srcdir)"/write_makefile.sh config.status # Unused GNU-specified targets install install-strip: install-html: install-dvi: install-pdf: install-ps: uninstall: TAGS: info: dvi: html: pdf: ps: check: installcheck: installdirs: