blob: 30b717baa38a7f9598fea5a66b8055394a75e52e (
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.0
all:
make -C bootloader
check:
perl -cw -I./lib drakclassic
perl -cw -I./lib draklive
perl_check:
perl_checker --restrict-to-files --no-suggest-simpler draklive 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)
|