summaryrefslogtreecommitdiffstats
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 @@
-ACTION=@echo preprocessing $@; rm -f $@; $(HOME)/bin/fcpp -WWW -I.. -Uunix -H -C -V -LL >$@
-
-SRC := $(wildcard *.t)
-OBJS := $(SRC:%.t=%.shtml)
-
-FSRC := $(wildcard *.bdf)
-FOBJS := $(FSRC:%.bdf=%.fnt) $(FSRC:%.bdf=%.png)
-
-all: bdf2bmp $(OBJS) $(FOBJS)
-
-%.shtml : %.t
- $(ACTION) $<
-
-%.fnt : %.bdf
- ../tools/convbdf -s 32 -l 255 -f "$<"
-
-%.png : %.bdf
- ./bdf2bmp "$<" "$<.bmp"
- convert "$<.bmp" "$@"
- rm $<.bmp
-
-convbdf: convbdf.c
- $(CC) -o "$@" "$<"
-
-clean:
- rm $(OBJS) $(FOBJS) \ No newline at end of file