summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorgirst <girst@users.noreply.github.com>2019-06-24 16:06:23 +0200
committergirst <girst@users.noreply.github.com>2019-06-24 16:06:23 +0200
commit11894000eedf0b0925d756c6a12003e4abd00b6f (patch)
treefdf853724ab0778efbff71ad29e808170c2fd95c /Makefile
parentb6d0fd2cda60196a8228d6fc3b9b330bb1871393 (diff)
downloadlegacywolf-11894000eedf0b0925d756c6a12003e4abd00b6f.tar.gz
legacywolf-11894000eedf0b0925d756c6a12003e4abd00b6f.zip
more portabe makefile
still has the mozillapath hardcoded, though
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files 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)