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:
commit
70e0da6221
22
Makefile
Normal file
22
Makefile
Normal 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 {} ';'
|
Loading…
x
Reference in New Issue
Block a user