summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8df897dfcb87f37925827951899caf93b5ca1697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
NAME = draklive
VERSION = 2.6

check:
	perl -cw -I./lib $(NAME)

clean:
	find -name '*~' -exec rm {} \;

dist: dis 
dis: clean
	@git archive --prefix=$(NAME)-$(VERSION)/ HEAD | xz > $(NAME)-$(VERSION).tar.xz; 
	$(info $(NAME)-$(VERSION).tar.xz is ready)