Initial commit
This commit is contained in:
commit
50f1eba33a
204 changed files with 4749 additions and 0 deletions
16
web/mc-pelican/Makefile
Normal file
16
web/mc-pelican/Makefile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
VERSION=20150208
|
||||
DIST=mc-pelican-$(VERSION)
|
||||
DISTFILES=README.txt LICENSE Makefile static templates
|
||||
|
||||
$(DIST).tar.bz2:
|
||||
mkdir $(DIST)
|
||||
cp -r $(DISTFILES) $(DIST)/
|
||||
tar cf $(DIST).tar --exclude .git $(DIST)
|
||||
bzip2 -9 $(DIST).tar
|
||||
$(RM) -rf $(DIST)
|
||||
|
||||
dist: $(DIST).tar.bz2
|
||||
|
||||
clean:
|
||||
$(RM) -f $(DIST).tar.bz2
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue