summaryrefslogtreecommitdiffstats
path: root/tools/Makefile
blob: 68fcd4b6bc8d318e77ec441a4b10a64dbf71a849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#             __________               __   ___.
#   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
#   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
#   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
#   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
#                     \/            \/     \/    \/            \/
# $Id$
#
CFLAGS := -O -ansi -g
LDFLAGS := -g

CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf	\
 generate_rocklatin mkboot ipod_fw codepages uclpack

all:
	@echo "Run make in your build directory!"

scramble: scramble.o iriver.o
descramble: descramble.o iriver.o

scramble.o: scramble.c iriver.h
descramble.o: descramble.c iriver.h
iriver.o: iriver.c iriver.h

sh2d: sh2d.c

bmp2rb:	bmp2rb.c
	$(SILENT)$(CC) -DAPPLICATION_NAME=\"$@\" -g $+ -o $@

rdf2binary:	rdf2binary.c
	$(SILENT)$(CC) -g $+ -o $@

mkboot:	mkboot.c
	$(SILENT)$(CC) -g $+ -o $@

ipod_fw:	ipod_fw.c
	$(SILENT)$(CC) -g $+ -o $@

convbdf: convbdf.c
	$(SILENT)$(CC) -g $+ -o $@

codepages: codepages.c codepage_tables.c
	$(SILENT)$(CC) -g $+ -o $@

generate_rocklatin: generate_rocklatin.c ../firmware/drivers/lcd-player-charset.c 
	$(SILENT)$(CC) -DHAVE_LCD_CHARCELLS -D__CONFIG_H__ -I../firmware/export $+ -o $@

uclpack:
	$(SILENT)$(MAKE) -C ucl

clean:
	@echo "Cleaning tools"
	$(SILENT)rm -f $(CLEANALL) $(shell for f in $(CLEANALL) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~
	$(SILENT)$(MAKE) -C ucl clean