Makefile: logmanager.tar(.PACKER)
This commit is contained in:
parent
20a02be1fc
commit
f882193404
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
|
@ -0,0 +1,5 @@
|
|||
*.tar
|
||||
*.gz
|
||||
*.xz
|
||||
*.lzma
|
||||
*.bz2
|
12
Makefile
Normal file
12
Makefile
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
logmanager.tar: logmanager logarchiver logcompressor logcleaner Makefile
|
||||
pax -w -s '!^!logmanager/!' -f $@ -- $^
|
||||
|
||||
%.tar.gz: %.tar
|
||||
gzip -c < $< > $@
|
||||
%.tar.lzma: %.tar
|
||||
lzma -c < $< > $@
|
||||
%.tar.xz: %.tar
|
||||
xz -c < $< > $@
|
||||
%.tar.bz2: %.tar
|
||||
bzip2 -c < $< > $@
|
Loading…
Reference in a new issue