summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomer Shalev <shalev.tomer@gmail.com>2009-10-29 05:06:13 +0000
committerTomer Shalev <shalev.tomer@gmail.com>2009-10-29 05:06:13 +0000
commit98a9d9a7a5aa409bcfe96ed7caa0b085d806aa0e (patch)
treef98d7b7beb87e981761c373a2c932975b083e237
parentc8f9f9cef8722d7bd33b5b407e64148baaa819ec (diff)
downloadrockbox-98a9d9a7a5aa409bcfe96ed7caa0b085d806aa0e.tar.gz
rockbox-98a9d9a7a5aa409bcfe96ed7caa0b085d806aa0e.zip
Don't break line too early
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23395 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--tools/Makefile31
1 files changed, 18 insertions, 13 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 853b567b74..0a69dde5da 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -11,17 +11,18 @@ LDFLAGS := -g
11 11
12.PHONY: rbspeexenc uclpack 12.PHONY: rbspeexenc uclpack
13 13
14CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \ 14CLEANALL := scramble descramble iriver sh2d bmp2rb rdf2binary convbdf \
15 generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat \ 15 generate_rocklatin mkboot ipod_fw codepages uclpack mi4 gigabeat lngdump \
16 lngdump telechips gigabeats creative hmac-sha1 rbspeexenc \ 16 telechips gigabeats creative hmac-sha1 rbspeexenc mkzenboot mk500boot
17 mkzenboot mk500boot
18 17
19all: scramble descramble sh2d rdf2binary mkboot mkzenboot \ 18all: scramble descramble sh2d rdf2binary mkboot mkzenboot convbdf codepages \
20 convbdf codepages uclpack rbspeexenc voicefont mk500boot 19 uclpack rbspeexenc voicefont mk500boot
21 20
22scramble: scramble.o iriver.o mi4.o gigabeat.o gigabeats.o telechips.o iaudio_bl_flash.o creative.o hmac-sha1.o 21scramble: scramble.o iriver.o mi4.o gigabeat.o gigabeats.o telechips.o \
22 iaudio_bl_flash.o creative.o hmac-sha1.o
23descramble: descramble.o iriver.o gigabeat.o 23descramble: descramble.o iriver.o gigabeat.o
24scramble.o: scramble.c iriver.h mi4.h gigabeat.h telechips.h iaudio_bl_flash.h creative.h 24scramble.o: scramble.c iriver.h mi4.h gigabeat.h telechips.h iaudio_bl_flash.h \
25 creative.h
25 26
26descramble.o: descramble.c iriver.h gigabeat.h 27descramble.o: descramble.c iriver.h gigabeat.h
27creative.o: creative.c creative.h 28creative.o: creative.c creative.h
@@ -64,10 +65,12 @@ lngdump: lngdump.c
64ipod_fw: ipod_fw.c 65ipod_fw: ipod_fw.c
65 $(SILENT)$(CC) $(CFLAGS) $+ -o $@ 66 $(SILENT)$(CC) $(CFLAGS) $+ -o $@
66 67
67checkwps: checkwps.c ../apps/gui/wps_parser.c ../apps/gui/wps_debug.c ../firmware/common/ctype.c ../apps/misc.c ../apps/recorder/bmp.c 68checkwps: checkwps.c ../apps/gui/wps_parser.c ../apps/gui/wps_debug.c \
69 ../firmware/common/ctype.c ../apps/misc.c ../apps/recorder/bmp.c
68 $(SILENT)$(CC) $(CFLAGS) -I ../apps/gui -I../firmware/export \ 70 $(SILENT)$(CC) $(CFLAGS) -I ../apps/gui -I../firmware/export \
69-D__PCTOOL__ -DDEBUG -DROCKBOX_HAS_LOGF -DIPOD_COLOR -D ROCKBOX_DIR_LEN -D WPS_DIR=\".\" \ 71 -D__PCTOOL__ -DDEBUG -DROCKBOX_HAS_LOGF -DIPOD_COLOR \
70-I../apps -I../firmware/target/arm/ipod -I../firmware/include $+ -o $@ 72 -D ROCKBOX_DIR_LEN -D WPS_DIR=\".\" -I../apps \
73 -I../firmware/target/arm/ipod -I../firmware/include $+ -o $@
71 74
72convbdf: convbdf.c 75convbdf: convbdf.c
73 $(SILENT)$(CC) $(CFLAGS) $+ -o $@ 76 $(SILENT)$(CC) $(CFLAGS) $+ -o $@
@@ -76,7 +79,8 @@ codepages: codepages.c codepage_tables.c
76 $(SILENT)$(CC) $(CFLAGS) $+ -o $@ 79 $(SILENT)$(CC) $(CFLAGS) $+ -o $@
77 80
78player_unifont: player_unifont.c ../firmware/drivers/lcd-charset-player.c 81player_unifont: player_unifont.c ../firmware/drivers/lcd-charset-player.c
79 $(SILENT)$(CC) -DARCHOS_PLAYER -D__PCTOOL__ -I../firmware/export $+ -o $@ 82 $(SILENT)$(CC) -DARCHOS_PLAYER -D__PCTOOL__ -I../firmware/export $+ \
83 -o $@
80 84
81uclpack: 85uclpack:
82 $(SILENT)$(MAKE) -C ucl 86 $(SILENT)$(MAKE) -C ucl
@@ -95,7 +99,8 @@ usb_benchmark: usb_benchmark.c
95 99
96clean: 100clean:
97 @echo "Cleaning tools" 101 @echo "Cleaning tools"
98 $(SILENT)rm -f $(CLEANALL) $(shell for f in $(CLEANALL) ; do echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~ 102 $(SILENT)rm -f $(CLEANALL) $(shell for f in $(CLEANALL) ; do \
103 echo $$f.exe $$f.o $$f.obj ; done) *.ajf *~
99 $(SILENT)$(MAKE) -C ucl clean 104 $(SILENT)$(MAKE) -C ucl clean
100 $(SILENT)$(MAKE) -C rbspeex clean 105 $(SILENT)$(MAKE) -C rbspeex clean
101 106