diff options
author | girst <girst@users.noreply.github.com> | 2019-06-24 16:06:23 +0200 |
---|---|---|
committer | girst <girst@users.noreply.github.com> | 2019-06-24 16:06:23 +0200 |
commit | 11894000eedf0b0925d756c6a12003e4abd00b6f (patch) | |
tree | fdf853724ab0778efbff71ad29e808170c2fd95c | |
parent | b6d0fd2cda60196a8228d6fc3b9b330bb1871393 (diff) | |
download | legacywolf-11894000eedf0b0925d756c6a12003e4abd00b6f.tar.gz legacywolf-11894000eedf0b0925d756c6a12003e4abd00b6f.zip |
more portabe makefile
still has the mozillapath hardcoded, though
-rw-r--r-- | Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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) |