summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: c9102140613daba332a1e2eb867f7b18a68b7137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
NAME = drakiso
VERSION = 1.11

all:
	make -C bootloader

check:
	perl -cw -I./lib drakclassic
	perl -cw -I./lib draklive2

perl_check:
	perl_checker --restrict-to-files --no-suggest-simpler draklive2 drakclassic lib/MGA/DrakISO/*

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

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