summaryrefslogtreecommitdiff
path: root/fonts
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-05-21 16:58:57 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-05-21 16:58:57 +0000
commit2a109e9f4c78708916885e7cbb9c25ede4a5af9d (patch)
treed0e626a119e27059695143923ea7e9b322b25b5a /fonts
parent22fd07578d7de9f2fc106f54e27a7a46e0f51949 (diff)
downloadrockbox-2a109e9f4c78708916885e7cbb9c25ede4a5af9d.tar.gz
rockbox-2a109e9f4c78708916885e7cbb9c25ede4a5af9d.zip
*** empty log message ***
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4662 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'fonts')
-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