]> git.pld-linux.org Git - projects/pld-builder.new.git/blobdiff - Makefile
fix dropin target
[projects/pld-builder.new.git] / Makefile
index 1b526f09b5aeea3f10ad43ed59770f5893c8d2b8..c84fe9561fbd266dfc1f8f4cd05a7099987c4fb3 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,26 @@
-all:
+PACKAGE                := pld-builder
+VERSION                := 0.6
+SNAP           := $(shell date +%Y%m%d)
+
+# for make dist
+REMOTE         := ssh://git@git.pld-linux.org/projects/$(MODULE)
+MODULE         := pld-builder.new
+BRANCH         := master
+
+all: compile
+
+compile:
        python -c "import compileall; compileall.compile_dir('.')"
 
 clean:
        find -name '*.pyc' | xargs rm -f
+       rm -f *.tar.bz2
+
+dist: $(PACKAGE)-$(VERSION).$(SNAP).tar.bz2
+       test ! -x ./dropin || ./dropin $<
+
+%.tar.bz2: %.tar
+       bzip2 -9 $<
+
+%.tar:
+       git archive --prefix=$(patsubst %.tar,%,$@)/ $(BRANCH) -o $@
This page took 0.062347 seconds and 4 git commands to generate.