mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-06 08:31:09 +00:00
17 lines
365 B
Makefile
17 lines
365 B
Makefile
|
|
DOCDIR=/usr/share/doc/pve-manager/
|
|
|
|
all:
|
|
|
|
.PHONY: install
|
|
install: aplinfo.dat support@proxmox.com.pubkey
|
|
install -D -m 0644 aplinfo.dat ${DESTDIR}${DOCDIR}/aplinfo.dat
|
|
install -D -m 0644 support@proxmox.com.pubkey ${DESTDIR}${DOCDIR}/support@proxmox.com.pubkey
|
|
|
|
.PHONY: distclean
|
|
distclean: clean
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf *~ aplinfo.dat.gz aplinfo.dat.asc
|