mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 11:20:15 +00:00
Makefile: add install target
This commit is contained in:
parent
00db529a04
commit
016a9bb845
1 changed files with 13 additions and 8 deletions
21
Makefile
21
Makefile
|
@ -1,8 +1,9 @@
|
|||
USERCHROME_FILES := root.css urlbar.css appMenu.css
|
||||
HOMEPAGE_FILES := head.html distro_links.html bottom.html
|
||||
DISTRO := postmarketOS
|
||||
DESTDIR :=
|
||||
|
||||
all: out/home.html out/policies.json out/prefs.js out/userChrome.css
|
||||
all: out/home.html out/userChrome.css
|
||||
|
||||
clean:
|
||||
rm -rf out
|
||||
|
@ -14,13 +15,17 @@ out/home.html: src/homepage/*.html out
|
|||
sed "s/@DISTRO@/$(DISTRO)/g" "$@.temp" > "$@"
|
||||
rm "$@.temp"
|
||||
|
||||
out/policies.json: src/policies.json out
|
||||
cat $< > $@
|
||||
|
||||
out/prefs.js: src/prefs.js out
|
||||
cat $< > $@
|
||||
|
||||
out/userChrome.css: out src/userChrome/*.css
|
||||
( cd src/userChrome; cat $(USERCHROME_FILES) ) > $@
|
||||
|
||||
.PHONY: all clean
|
||||
install:
|
||||
install -Dm644 src/policies.json \
|
||||
"$(DESTDIR)/etc/firefox/policies/policies.json"
|
||||
install -Dm644 out/prefs.js \
|
||||
"$(DESTDIR)/usr/lib/firefox/defaults/pref/mobile-config.js"
|
||||
install -Dm644 "out/home.html" \
|
||||
"$(DESTDIR)/usr/share/mobile-config-firefox/home.html"
|
||||
install -Dm644 "out/userChrome.css" \
|
||||
"$(DESTDIR)/etc/mobile-config-firefox/userChrome.css"
|
||||
|
||||
.PHONY: all clean install
|
||||
|
|
Loading…
Reference in a new issue