mirror of
https://git.proxmox.com/git/pve-manager
synced 2025-08-11 12:54:59 +00:00
cleanup: move bin/test to toplevel
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
6ebc0106ce
commit
73ed0af158
4
Makefile
4
Makefile
@ -4,7 +4,7 @@ export SOURCE_DATE_EPOCH ?= $(shell dpkg-parsechangelog -STimestamp)
|
|||||||
|
|
||||||
DESTDIR=
|
DESTDIR=
|
||||||
|
|
||||||
SUBDIRS = aplinfo PVE bin www services configs network-hooks
|
SUBDIRS = aplinfo PVE bin www services configs network-hooks test
|
||||||
|
|
||||||
ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
|
ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
|
||||||
GITVERSION:=$(shell git rev-parse HEAD)
|
GITVERSION:=$(shell git rev-parse HEAD)
|
||||||
@ -14,7 +14,7 @@ DEB=${PACKAGE}_${VERSION}-${PACKAGERELEASE}_${ARCH}.deb
|
|||||||
all: ${SUBDIRS}
|
all: ${SUBDIRS}
|
||||||
|
|
||||||
check:
|
check:
|
||||||
${MAKE} -C bin/test check
|
${MAKE} -C test check
|
||||||
|
|
||||||
.PHONY: dinstall
|
.PHONY: dinstall
|
||||||
dinstall: ${DEB}
|
dinstall: ${DEB}
|
||||||
|
@ -4,10 +4,6 @@ include ../defines.mk
|
|||||||
export NOVIEW=1
|
export NOVIEW=1
|
||||||
include /usr/share/pve-doc-generator/pve-doc-generator.mk
|
include /usr/share/pve-doc-generator/pve-doc-generator.mk
|
||||||
|
|
||||||
export PERLLIB=..
|
|
||||||
|
|
||||||
SUBDIRS = test
|
|
||||||
|
|
||||||
SERVICES = pvestatd pveproxy pvedaemon spiceproxy
|
SERVICES = pvestatd pveproxy pvedaemon spiceproxy
|
||||||
CLITOOLS = vzdump pvesubscription pveceph pveam pvesr pvenode
|
CLITOOLS = vzdump pvesubscription pveceph pveam pvesr pvenode
|
||||||
|
|
||||||
@ -75,10 +71,8 @@ install: ${SCRIPTS} ${CLI_MANS} ${SERVICE_MANS} pvemailforward $(addsuffix .serv
|
|||||||
install -m 0644 ${SERVICE_MANS} ${MAN8DIR}
|
install -m 0644 ${SERVICE_MANS} ${MAN8DIR}
|
||||||
for i in ${CLITOOLS}; do install -m 0644 -D $$i.bash-completion ${BASHCOMPLDIR}/$$i; done
|
for i in ${CLITOOLS}; do install -m 0644 -D $$i.bash-completion ${BASHCOMPLDIR}/$$i; done
|
||||||
for i in ${SERVICES}; do install -m 0644 -D $$i.service-bash-completion ${BASHCOMPLDIR}/$$i; done
|
for i in ${SERVICES}; do install -m 0644 -D $$i.service-bash-completion ${BASHCOMPLDIR}/$$i; done
|
||||||
set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
|
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
||||||
make cleanup-docgen
|
make cleanup-docgen
|
||||||
rm -rf *~ *.tmp ${CLI_MANS} ${SERVICE_MANS} *.1.pod *.8.pod pvemailforward *.bash-completion *.service-bash-completion
|
rm -rf *~ *.tmp ${CLI_MANS} ${SERVICE_MANS} *.1.pod *.8.pod pvemailforward *.bash-completion *.service-bash-completion
|
||||||
set -e && for i in ${SUBDIRS}; do ${MAKE} -C $$i $@; done
|
|
||||||
|
@ -1,7 +1,9 @@
|
|||||||
include ../../defines.mk
|
include ../defines.mk
|
||||||
|
|
||||||
all:
|
all:
|
||||||
|
|
||||||
|
export PERLLIB=..
|
||||||
|
|
||||||
check:
|
check:
|
||||||
./balloontest.pl
|
./balloontest.pl
|
||||||
./replication_test1.pl
|
./replication_test1.pl
|
||||||
@ -11,10 +13,8 @@ check:
|
|||||||
./replication_test5.pl
|
./replication_test5.pl
|
||||||
./replication_test6.pl
|
./replication_test6.pl
|
||||||
|
|
||||||
|
|
||||||
.PHONY: install
|
.PHONY: install
|
||||||
install:
|
install:
|
||||||
# do nothing
|
|
||||||
|
|
||||||
.PHONY: clean
|
.PHONY: clean
|
||||||
clean:
|
clean:
|
Loading…
Reference in New Issue
Block a user