]> git.proxmox.com Git - pve-cluster.git/blob - Makefile
datacenter.cfg: fix fall back for undefined config
[pve-cluster.git] / Makefile
1 include /usr/share/dpkg/pkg-info.mk
2 include /usr/share/dpkg/architecture.mk
3
4 PACKAGE=pve-cluster
5
6 GITVERSION:=$(shell git rev-parse HEAD)
7
8 DEB=${PACKAGE}_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
9 LIBDEB = libpve-cluster-perl_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
10 LIBDEB += libpve-cluster-api-perl_${DEB_VERSION_UPSTREAM_REVISION}_all.deb
11 DBGDEB=${PACKAGE}-dbgsym_${DEB_VERSION_UPSTREAM_REVISION}_${DEB_BUILD_ARCH}.deb
12
13 DEBS = ${DEB} ${DBG_DEB} ${LIBDEB}
14
15 PERL_APIVER := `perl -MConfig -e 'print $$Config{debian_abi}//$$Config{version};'`
16
17 all: ${DEB} ${DBG_DEB}
18
19 cpgtest: cpgtest.c
20 gcc -Wall cpgtest.c $(shell pkg-config --cflags --libs libcpg libqb) -o cpgtest
21
22 .PHONY: dinstall
23 dinstall: ${DEB} ${LIBDEB}
24 dpkg -i $^
25
26 .PHONY: deb
27 deb ${DBG_DEB} ${LIBDEB}: ${DEB}
28 ${DEB}:
29 rm -f *.deb
30 rm -rf build
31 cp -a data build
32 cp -a debian build/debian
33 echo "git clone git://git.proxmox.com/git/pve-cluster.git\\ngit checkout ${GITVERSION}" > build/debian/SOURCE
34 cd build; dpkg-buildpackage -rfakeroot -b -us -uc
35 lintian ${DEB}
36
37
38 .PHONY: upload
39 upload: ${DEBS}
40 tar cf - ${DEBS} | ssh -X repoman@repo.proxmox.com -- upload --product pve --dist bullseye --arch ${DEB_BUILD_ARCH}
41
42 .PHONY: clean
43 clean:
44 rm -rf *~ build *.deb *.changes *.dsc *.buildinfo