From 11894000eedf0b0925d756c6a12003e4abd00b6f Mon Sep 17 00:00:00 2001 From: girst Date: Mon, 24 Jun 2019 16:06:23 +0200 Subject: [PATCH] more portabe makefile still has the mozillapath hardcoded, though --- Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 3927c7f..975ed7b 100644 --- a/Makefile +++ b/Makefile @@ -1,9 +1,8 @@ .PHONY: all install -files = chrome.manifest +files := chrome.manifest files += config.js files += defaults/pref/config-prefs.js -files += legacy/boot.jsm files += legacy/BootstrapLoader.jsm files += legacy/RDFDataSource.jsm files += legacy/RDFManifestConverter.jsm @@ -11,9 +10,8 @@ archive = legacyfox.tar.gz mozilladir = /usr/lib64/firefox/ all: $(archive) - $(archive): $(files) - tar czf $(archive) -- $^ + tar czf $@ -- $(files) install: $(archive) tar xzf $(archive) -C $(mozilladir) -- 2.39.3