pve-manager/www/css/Makefile
Thomas Lamprecht 8f46103543 Makefile: fix distclean target
As some Makefiles in sub directories do not implement the distclean
target, namely:
PVE/Service/Makefile
PVE/CLI/Makefile

This target is broken.

As all other implementations just redirect to the 'clean' target I
do not implement the missing ones but rather remove all such
targets. Keep it just in the top level directory, for consistence
sake with other pve repos, and redirect it there directly to the
clean target.

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
2016-09-28 08:21:48 +02:00

14 lines
239 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: clean
clean:
rm -rf *~