]> git.proxmox.com Git - lxc.git/blob - Makefile
859d27a1a7e01c4f6f9dcdc7de96e5c46ec278be
[lxc.git] / Makefile
1 PACKAGE=lxc-pve
2 LXCVER=3.0.0
3 DEBREL=1
4
5 SRCDIR=lxc
6 BUILDSRC := $(SRCDIR).tmp
7
8 ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
9 GITVERSION:=$(shell git rev-parse HEAD)
10
11 DEB1=${PACKAGE}_${LXCVER}-${DEBREL}_${ARCH}.deb
12 DEB2=${PACKAGE}-dev_${LXCVER}-${DEBREL}_${ARCH}.deb \
13 ${PACKAGE}-dbgsym_${LXCVER}-${DEBREL}_${ARCH}.deb
14 DEBS=$(DEB1) $(DEB2)
15
16 all: ${DEBS}
17 echo ${DEBS}
18
19 .PHONY: submodule
20 submodule:
21 test -f "${SRCDIR}/debian/changelog" || git submodule update --init
22
23 .PHONY: deb
24 deb: ${DEBS}
25 $(DEB2): $(DEB1)
26 $(DEB1): | submodule
27 rm -f *.deb
28 rm -rf $(BUILDSRC)
29 mkdir $(BUILDSRC)
30 cp -a $(SRCDIR)/* $(BUILDSRC)/
31 cp -a debian $(BUILDSRC)/debian
32 echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout $(GITVERSION)" > $(BUILDSRC)/debian/SOURCE
33 cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc
34 lintian $(DEBS)
35
36 .PHONY: update-template-configs
37 update-template-configs:
38 test -d lxc-templates || git clone https://github.com/lxc/lxc-templates lxc-templates
39 cd lxc-templates && git pull
40 rm -rf config
41 cp -R lxc-templates/config config
42 rm -f config/*.am config/*.m4
43 git add config
44
45 .PHONY: upload
46 upload: ${DEBS}
47 tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
48
49 distclean: clean
50
51 .PHONY: clean
52 clean:
53 rm -rf $(BUILDSRC) *_${ARCH}.deb *.changes *.dsc *.buildinfo
54
55 .PHONY: dinstall
56 dinstall: ${DEBS}
57 dpkg -i ${DEBS}