commit 70e0da62212c5a85f1f72642688ca32e920a506c Author: Dietmar Maurer Date: Sat Apr 4 14:24:20 2015 +0200 initial commit diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..afe9c31 --- /dev/null +++ b/Makefile @@ -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 {} ';' diff --git a/lxc.tgz b/lxc.tgz new file mode 100644 index 0000000..bf39274 Binary files /dev/null and b/lxc.tgz differ