summaryrefslogtreecommitdiff
path: root/fonts/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'fonts/Makefile')
-rw-r--r--fonts/Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/fonts/Makefile b/fonts/Makefile
deleted file mode 100644
index 193fc80833..0000000000
--- a/fonts/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
1ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C -V -LL >$@
2
3SRC := $(wildcard *.t)
4OBJS := $(SRC:%.t=%.shtml)
5
6FSRC := $(wildcard *.bdf)
7FOBJS := $(FSRC:%.bdf=%.fnt) $(FSRC:%.bdf=%.png)
8
9all: bdf2bmp $(OBJS) $(FOBJS)
10
11%.shtml : %.t
12 $(ACTION) $<
13
14%.fnt : %.bdf
15 ../tools/convbdf -s 32 -l 255 -f "$<"
16
17%.png : %.bdf
18 ./bdf2bmp "$<" "$<.bmp"
19 convert "$<.bmp" "$@"
20 rm $<.bmp
21
22convbdf: convbdf.c
23 $(CC) -o "$@" "$<"
24
25clean:
26 rm $(OBJS) $(FOBJS) \ No newline at end of file