aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: edd4351077abb1ae0ac01ef798d135b7b4859dae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
PACKAGE = drakx-installer-help
VERSION = 3.1

HTML_FILES = acceptLicense.html \
	     addUser.html \
	     ask_mntpoint_s.html \
	     choosePackages.html \
	     configureX_card_list.html \
	     configureX_chooser.html \
	     configureX_monitor.html \
	     configureNetwork.html \
	     diskdrake.html \
	     doPartitionDisks.html \
	     exitInstall.html \
	     formatPartitions.html \
	     index.html \
	     installer.html \
	     installUpdates.html \
	     misc-params.html \
	     resizeFATChoose.html \
	     selectInstallClass.html \
	     selectKeyboard.html \
	     selectLanguage.html \
	     selectMouse.html \
	     setRootPassword.html \
	     setupBootloader.html \
	     setupBootloaderAddEntry.html \
	     setupBootloaderBeginner.html \
	     setupBootloaderExpert.html \
	     setupSCSI.html \
	     setupX.html \
	     setupYabootAddEntry.html \
	     setupYabootGeneral.html \
	     summary.html \
	     takeOverHdChoose.html \
	     takeOverHdConfirm.html

TRANSLATIONS = de el eo es fr nl pt pt_br uk

PNG_FILES = draft.png \
	    note.png \
	    tip.png \
	    warning.png

FILES = $(HTML_FILES) $(PNG_FILES) $(TRANSLATIONS) COPYING NEWS Makefile README

clean:
	rm -f *~ \#*\#

cleandist: clean
	rm -fr $(PACKAGE)-$(VERSION) $(PACKAGE)-$(VERSION).tar.xz

dir:
	mkdir $(PACKAGE)-$(VERSION)

localcopy:
	tar c --exclude=.svn $(FILES) | tar x -C $(PACKAGE)-$(VERSION)

tar:
	tar cvYf $(PACKAGE)-$(VERSION).tar.xz $(PACKAGE)-$(VERSION)
	rm -fr $(PACKAGE)-$(VERSION)

dist: cleandist dir localcopy tar