]> git.proxmox.com Git - lxc.git/blame - Makefile
bump version to 3.0.1+pve1-1
[lxc.git] / Makefile
CommitLineData
b76bfba9 1PACKAGE=lxc-pve
2d8021b3
WB
2LXCVER=3.0.1+pve1
3DEBREL=1
70e0da62 4
b76bfba9 5SRCDIR=lxc
bc7e56ac 6BUILDSRC := $(SRCDIR).tmp
70e0da62 7
9108d962 8ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
e15af1ab 9GITVERSION:=$(shell git rev-parse HEAD)
70e0da62 10
30da3479
WB
11DEB1=${PACKAGE}_${LXCVER}-${DEBREL}_${ARCH}.deb
12DEB2=${PACKAGE}-dev_${LXCVER}-${DEBREL}_${ARCH}.deb \
949a6e9f 13 ${PACKAGE}-dbgsym_${LXCVER}-${DEBREL}_${ARCH}.deb
30da3479 14DEBS=$(DEB1) $(DEB2)
70e0da62 15
9108d962
DM
16all: ${DEBS}
17 echo ${DEBS}
18
bc7e56ac
WB
19.PHONY: submodule
20submodule:
21 test -f "${SRCDIR}/debian/changelog" || git submodule update --init
22
b158cb38
WB
23.PHONY: deb
24deb: ${DEBS}
30da3479 25$(DEB2): $(DEB1)
bc7e56ac
WB
26$(DEB1): | submodule
27 rm -f *.deb
28 rm -rf $(BUILDSRC)
2d8021b3 29 cp -a $(SRCDIR) $(BUILDSRC)
bc7e56ac 30 cp -a debian $(BUILDSRC)/debian
9cd5bbf7
WB
31 mkdir $(BUILDSRC)/debian/config
32 for i in config/*.conf.in; do \
33 sed -e 's|@LXCTEMPLATECONFIG@|/usr/share/lxc/config|g' $$i > $(BUILDSRC)/debian/$${i%.in} ; \
34 done
bc7e56ac
WB
35 echo "git clone git://git.proxmox.com/git/lxc.git\\ngit checkout $(GITVERSION)" > $(BUILDSRC)/debian/SOURCE
36 cd $(BUILDSRC); dpkg-buildpackage -rfakeroot -b -us -uc
37 lintian $(DEBS)
70e0da62 38
f49c89ac
WB
39.PHONY: update-template-configs
40update-template-configs:
41 test -d lxc-templates || git clone https://github.com/lxc/lxc-templates lxc-templates
42 cd lxc-templates && git pull
43 rm -rf config
44 cp -R lxc-templates/config config
45 rm -f config/*.am config/*.m4
46 git add config
47
9108d962
DM
48.PHONY: upload
49upload: ${DEBS}
0e1943c7 50 tar cf - ${DEBS} | ssh repoman@repo.proxmox.com upload --product pve --dist stretch
9108d962 51
70e0da62
DM
52distclean: clean
53
54.PHONY: clean
55clean:
bc7e56ac 56 rm -rf $(BUILDSRC) *_${ARCH}.deb *.changes *.dsc *.buildinfo
9108d962
DM
57
58.PHONY: dinstall
59dinstall: ${DEBS}
60 dpkg -i ${DEBS}