2021-05-20 20:06:56 +00:00
|
|
|
# Copyright 2021 Oliver Smith
|
2020-08-06 14:39:33 +00:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
2021-05-20 15:21:43 +00:00
|
|
|
HEADER_FILE := src/common/header.css
|
|
|
|
USERCHROME_FILES := $(HEADER_FILE) $(sort $(wildcard src/userChrome/*.css))
|
|
|
|
USERCONTENT_FILES := $(HEADER_FILE) $(sort $(wildcard src/userContent/*.css))
|
2020-08-06 13:52:51 +00:00
|
|
|
DESTDIR :=
|
2020-08-20 11:23:27 +00:00
|
|
|
FIREFOX_DIR := /usr/lib/firefox
|
2021-07-15 14:12:23 +00:00
|
|
|
FIREFOX_CONFIG_DIR := /etc/firefox
|
2020-08-06 13:30:02 +00:00
|
|
|
|
2021-12-04 18:50:56 +00:00
|
|
|
all: out/userChrome.css out/userContent.css
|
2020-08-06 13:30:02 +00:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf out
|
|
|
|
out:
|
|
|
|
mkdir out
|
|
|
|
|
2020-08-10 17:49:09 +00:00
|
|
|
out/userChrome.css: $(USERCHROME_FILES) out
|
|
|
|
cat $(USERCHROME_FILES) > $@
|
2020-08-06 13:30:02 +00:00
|
|
|
|
2021-05-15 18:33:29 +00:00
|
|
|
out/userContent.css: $(USERCONTENT_FILES) out
|
|
|
|
cat $(USERCONTENT_FILES) > $@
|
|
|
|
|
2020-08-06 14:25:22 +00:00
|
|
|
install: all
|
2020-08-06 13:52:51 +00:00
|
|
|
install -Dm644 src/policies.json \
|
2021-07-15 14:12:23 +00:00
|
|
|
"$(DESTDIR)/$(FIREFOX_CONFIG_DIR)/policies/policies.json"
|
2020-08-20 19:49:27 +00:00
|
|
|
install -Dm644 src/mobile-config-prefs.js \
|
|
|
|
"$(DESTDIR)/$(FIREFOX_DIR)/defaults/pref/mobile-config-prefs.js"
|
2020-08-20 11:20:42 +00:00
|
|
|
install -Dm644 src/mobile-config-autoconfig.js \
|
|
|
|
"$(DESTDIR)/$(FIREFOX_DIR)/mobile-config-autoconfig.js"
|
2020-08-06 13:52:51 +00:00
|
|
|
install -Dm644 "out/userChrome.css" \
|
|
|
|
"$(DESTDIR)/etc/mobile-config-firefox/userChrome.css"
|
2021-05-15 18:33:29 +00:00
|
|
|
install -Dm644 "out/userContent.css" \
|
|
|
|
"$(DESTDIR)/etc/mobile-config-firefox/userContent.css"
|
2021-06-11 13:52:43 +00:00
|
|
|
install -Dm644 org.postmarketos.mobile_config_firefox.metainfo.xml \
|
|
|
|
"$(DESTDIR)/usr/share/metainfo/org.postmarketos.mobile_config_firefox.metainfo.xml"
|
2020-08-06 13:52:51 +00:00
|
|
|
|
|
|
|
.PHONY: all clean install
|