summaryrefslogtreecommitdiffstats
path: root/fonts/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'fonts/Makefile')
-rw-r--r--fonts/Makefile29
1 files changed, 27 insertions, 2 deletions
diff --git a/fonts/Makefile b/fonts/Makefile
index 145a433..d7157a1 100644
--- a/fonts/Makefile
+++ b/fonts/Makefile
@@ -1,2 +1,27 @@
-deault:
- ./generate.pe Dyuthi/Dyuthi.sfd Kalyani/Kalyani.sfd Meera/Meera.sfd Rachana/Rachana.sfd \ No newline at end of file
+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
+
+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
+
+clean:
+ @for font in `echo ${fonts}`; \
+ do \
+ if [ -f $${font}/$${font}.ttf ]; then rm -f $${font}/$${font}.ttf; fi \
+ done
+