5
0
mirror of git://git.proxmox.com/git/lxc.git synced 2025-02-01 09:47:41 +03:00

initial commit

This commit is contained in:
Dietmar Maurer 2015-04-04 14:24:20 +02:00
commit 70e0da6221
2 changed files with 22 additions and 0 deletions

22
Makefile Normal file
View File

@ -0,0 +1,22 @@
RELEASE=4.0
SRCDIR=lxc
SRCTAR=${SRCDIR}.tgz
all: ${SRCTAR}
:PHONY: download
download ${SRCTAR}:
rm -rf ${SRCDIR} ${SRCTAR}
git clone git://github.com/lxc/lxc
tar czf ${SRCTAR}.tmp ${SRCDIR}
mv ${SRCTAR}.tmp ${SRCTAR}
distclean: clean
.PHONY: clean
clean:
rm -rf ${SRCDIR} ${SRCDIR}.tmp
find . -name '*~' -exec rm {} ';'

BIN
lxc.tgz Normal file

Binary file not shown.