mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
23 lines
423 B
Makefile
23 lines
423 B
Makefile
|
USERCHROME_FILES := root.css urlbar.css appMenu.css
|
||
|
|
||
|
all: out/home.html out/policies.json out/prefs.js out/userChrome.css
|
||
|
|
||
|
clean:
|
||
|
rm -rf out
|
||
|
out:
|
||
|
mkdir out
|
||
|
|
||
|
out/home.html: src/home.html out
|
||
|
cat $< > $@
|
||
|
|
||
|
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
|