Move header to common folder (MR 11)
Add the "do not edit" warning to both the generated userChrome.css and userContent.css.
This commit is contained in:
parent
f07fe00abd
commit
7bffd93c7b
2 changed files with 3 additions and 2 deletions
5
Makefile
5
Makefile
|
@ -1,8 +1,9 @@
|
||||||
# Copyright 2020 Oliver Smith
|
# Copyright 2020 Oliver Smith
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
USERCHROME_FILES := $(sort $(wildcard src/userChrome/*.css))
|
HEADER_FILE := src/common/header.css
|
||||||
USERCONTENT_FILES := $(sort $(wildcard src/userContent/*.css))
|
USERCHROME_FILES := $(HEADER_FILE) $(sort $(wildcard src/userChrome/*.css))
|
||||||
|
USERCONTENT_FILES := $(HEADER_FILE) $(sort $(wildcard src/userContent/*.css))
|
||||||
HOMEPAGE_FILES := head.html distro_links.html bottom.html
|
HOMEPAGE_FILES := head.html distro_links.html bottom.html
|
||||||
DISTRO := postmarketOS
|
DISTRO := postmarketOS
|
||||||
DESTDIR :=
|
DESTDIR :=
|
||||||
|
|
Loading…
Reference in a new issue