File: Makefile

package info (click to toggle)
ttf-junicode 0.6.17-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 28,772 kB
  • ctags: 36
  • sloc: python: 3,789; makefile: 83
file content (31 lines) | stat: -rw-r--r-- 672 bytes parent folder | download
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
VPATH = src

all : regular bold italic bolditalic

regular : rxgf Junicode-Regular.sfd
	fontforge -script xgridfit/Junicode-Regular.py

rxgf :
	cd xgridfit ; $(MAKE) regular

bold : bxgf Junicode-Bold.sfd
	fontforge -script xgridfit/Junicode-Bold.py

bxgf :
	cd xgridfit ; $(MAKE) bold

italic : ixgf Junicode-Italic.sfd
	fontforge -script xgridfit/Junicode-Italic.py

ixgf :
	cd xgridfit ; $(MAKE) italic

bolditalic : bixgf Junicode-BoldItalic.sfd
	fontforge -script xgridfit/Junicode-BoldItalic.py

bixgf :
	cd xgridfit ; $(MAKE) bolditalic

clean :
	rm -f *.ttf ; rm -f xgridfit/*.py
	rm -f xgridfit/jun-r.xgf xgridfit/jun-i.xgf xgridfit/jun-b.xgf xgridfit/jun-bi.xgf