File: Makefile

package info (click to toggle)
fonts-atarismall 2.3-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 364 kB
  • sloc: makefile: 20; xml: 19; sh: 9
file content (21 lines) | stat: -rw-r--r-- 403 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
BDFS = $(wildcard *.bdf)
PCFS = $(BDFS:%.bdf=%.pcf)

all: pcfs

pcfs: $(PCFS)

$(PCFS): %.pcf: %.bdf
	bdftopcf -o $@ $^

sfd:
	bdf2sfd atari800-normal.bdf > atari800-normal.sfd

otf:
	fontforge -lang=ff -c 'Open($$1); Generate($$2)' atari800-normal-ext.sfd AtariSmall.otf
#	fontforge -lang=ff -c 'Open($$1); Generate($$2)' atari800-normal.sfd atari800-normal.otf

clean:
	rm -f *.pcf

.PHONY: all clean