]> git.pld-linux.org Git - projects/pld-builder.new.git/blame - Makefile
Fix outdated syntax
[projects/pld-builder.new.git] / Makefile
CommitLineData
9ea6c4b6 1PACKAGE := pld-builder
8f88edb6 2VERSION := 0.6
492d2f13 3SNAP := $(shell date +%Y%m%d)
9ea6c4b6 4
8f88edb6
ER
5all: compile
6
7compile:
b03a96bc
MM
8 python -c "import compileall; compileall.compile_dir('.')"
9
10clean:
11 find -name '*.pyc' | xargs rm -f
8f88edb6
ER
12 rm -f *.tar.bz2
13
3646876c 14dist: $(PACKAGE)-$(VERSION).$(SNAP).tar.bz2
8f88edb6
ER
15 test ! -x ./dropin || ./dropin $<
16
17%.tar.bz2: %.tar
18 bzip2 -9 $<
9ea6c4b6 19
8f88edb6 20%.tar:
02a10d27 21 git archive --prefix=$(patsubst %.tar,%,$@)/ HEAD -o $@
This page took 1.942975 seconds and 4 git commands to generate.