*** empty log message ***

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4662 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2004-05-21 16:58:57 +00:00
parent 22fd07578d
commit 2a109e9f4c

View file

@ -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)