blob: a4da77f3e3feef5ca83a594d9dd698d1fc3f4ae5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
VERSION = $(shell cat VERSION)
NAME=kickstarter
TAGVER = $(shell cat VERSION | sed -e "s/\([0-9\.]*\).*/\1/")
ifeq ($(VERSION), $(TAGVER))
TAG = $(TAGVER)
else
TAG = "HEAD"
endif
PYTHON=python
CHEETAH=cheetah
TEMPLATES=$(wildcard *.tmpl)
TEMPLATE_MODS=$(patsubst %.tmpl,%.py,$(TEMPLATES))
.SECONDARY: $(TEMPLATE_MODS)
KS=$(wildcard *.ks)
all: tmpls
python setup.py build
tmpls:
cd kickstart; make
install: tmpls
python setup.py build
python setup.py install
%.py: %.tmpl
$(CHEETAH) compile --settings='useStackFrames=False' $<
ks: $(TEMPLATES) configurations.yaml repos.yaml
kickstarter -c configurations.yaml -r repos.yaml
tag:
git tag $(VERSION)
dist-bz2:
git archive --format=tar --prefix=$(NAME)-$(TAGVER)/ $(TAG) | \
bzip2 > $(NAME)-$(TAGVER).tar.bz2
dist-gz:
git archive --format=tar --prefix=$(NAME)-$(TAGVER)/ $(TAG) | \
gzip > $(NAME)-$(TAGVER).tar.gz
dist: dist-bz2
clean:
rm -f $(TEMPLATE_MODS)
rm -f $(addsuffix .bak,$(TEMPLATE_MODS))
rm -f *.pyc *.pyo
rm -rf dist/ build/ kickstart/kickstart.py kickstart/__init__.py *~ */*~
rm -rf *.egg-info/
|