mirror of
https://git.proxmox.com/git/proxmox-widget-toolkit
synced 2025-08-04 20:48:38 +00:00
14 lines
178 B
Makefile
14 lines
178 B
Makefile
include ../defines.mk
|
|
|
|
CSS=
|
|
|
|
all:
|
|
|
|
.PHONY: install
|
|
install: ${CSS}
|
|
install -d ${WWWCSSDIR}
|
|
for i in ${CSS}; do install -m 0755 $$i ${WWWCSSDIR}/$$i; done
|
|
|
|
.PHONY: clean
|
|
clean:
|