mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-07-09 02:58:16 +00:00

adds font-awesome to css folder and inserts the css into the html of the site we will use font-awesome for most icons Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
17 lines
275 B
Makefile
17 lines
275 B
Makefile
include ../../defines.mk
|
|
|
|
all:
|
|
|
|
.PHONY: install
|
|
install: ext6-pve.css font-awesome.css
|
|
install -d ${WWWCSSDIR}
|
|
install -m 0644 -o www-data -g www-data $? ${WWWCSSDIR}
|
|
set -e && ${MAKE} -C fonts install
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~
|