mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-08-05 13:11:57 +00:00

compared result with `diffoscope`, saw now difference Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
14 lines
190 B
Makefile
14 lines
190 B
Makefile
include ../defines.mk
|
|
|
|
CSS=ext6-pmx.css
|
|
|
|
all:
|
|
|
|
.PHONY: install
|
|
install: ${CSS}
|
|
install -d ${WWWCSSDIR}
|
|
for i in ${CSS}; do install -m 0755 $$i ${WWWCSSDIR}/$$i; done
|
|
|
|
.PHONY: clean
|
|
clean:
|