summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: e4101e23df5211d84822f89177014851de9a42e8 (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
fontpath=/usr/share/fonts/truetype/malayalam
fonts="AnjaliOldLipi Dyuthi Kalyani Meera Rachana RaghuMalayalamSans suruma"

default:
		@for font in `echo ${fonts}`; \
	do \
		./generate.pe $${font}/$${font}.sfd; done 

install: */*.ttf
	@for font in `echo ${fonts}`; \
	do \
		install -D -m 0644  $${font}/$${font}.ttf ${fontpath}/$${font}.ttf; done
		install -m 0644 malayalam-fonts.conf /etc/fonts/conf.avail/67-malayalam-fonts.conf
		ln -s /etc/fonts/conf.avail/67-malayalam-fonts.conf /etc/fonts/conf.d

uninstall:
	@for font in `echo ${fonts}`; \
	do \
		if [ -f ${fontpath}/$${font}.ttf ]; then rm -f ${fontpath}/$${font}.ttf; fi \
	done

	if [ -d ${fontpath} ]; then rmdir ${fontpath}; fi

	if [ -f /etc/fonts/conf.d/67-malayalam-fonts.conf ]; then \
	rm /etc/fonts/conf.d/67-malayalam-fonts.conf; fi

	if [ -f /etc/fonts/conf.avail/67-malayalam-fonts.conf ]; then \
	rm /etc/fonts/conf.avail/67-malayalam-fonts.conf; fi

clean:
	@for font in `echo ${fonts}`; \
	do \
		if [ -f $${font}/$${font}.ttf ]; then rm -f $${font}/$${font}.ttf; fi \
	done