]> git.proxmox.com Git - lxc.git/blob - Makefile
e556f15f9eb0b558951f346afab20d0bc40a99d5
[lxc.git] / Makefile
1 PACKAGE=lxc-pve
2 LXCVER=3.0.0
3 DEBREL=3
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 mkdir $(BUILDSRC)/debian/config
33 for i in config/*.conf.in; do \
34 sed -e 's|@LXCTEMPLATECONFIG@|/usr/share/lxc/config|g' $$i > $(BUILDSRC)/debian/$${i%.in} ; \
35 done
36 echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout $(GITVERSION)" > $(BUILDSRC)/debian/SOURCE
37 cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc
38 lintian $(DEBS)
39
40 .PHONY: update-template-configs
41 update-template-configs:
42 test -d lxc-templates || git clone https://github.com/lxc/lxc-templates lxc-templates
43 cd lxc-templates && git pull
44 rm -rf config
45 cp -R lxc-templates/config config
46 rm -f config/*.am config/*.m4
47 git add config
48
49 .PHONY: upload
50 upload: ${DEBS}
51 tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
52
53 distclean: clean
54
55 .PHONY: clean
56 clean:
57 rm -rf $(BUILDSRC) *_${ARCH}.deb *.changes *.dsc *.buildinfo
58
59 .PHONY: dinstall
60 dinstall: ${DEBS}
61 dpkg -i ${DEBS}