| # __________ __ ___. |
| # 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 mi4 gigabeat database |
| |
| all: |
| @echo "Run make in your build directory!" |
| |
| scramble: scramble.o iriver.o mi4.o gigabeat.o |
| descramble: descramble.o iriver.o gigabeat.o |
| |
| scramble.o: scramble.c iriver.h mi4.h gigabeat.h |
| descramble.o: descramble.c iriver.h gigabeat.h |
| iriver.o: iriver.c iriver.h |
| gigabeat.o: gigabeat.c gigabeat.h |
| mi4.o: mi4.c mi4.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 $@ |
| |
| database: database.c ../apps/tagcache.c ../apps/metadata.c \ |
| ../firmware/id3.c ../firmware/common/unicode.c \ |
| ../firmware/common/crc32.c ../uisimulator/common/io.c \ |
| ../firmware/mp3data.c ../firmware/logf.c ../firmware/replaygain.c \ |
| ../firmware/common/structec.c |
| $(SILENT)$(CC) -g -I../firmware/export -iquote ../firmware/include \ |
| -D__PCTOOL__ -DHAVE_TAGCACHE -DROCKBOX_HAS_LOGF -DSIMULATOR \ |
| -DCONFIG_CODEC=1 -ldl -I../apps $+ -o $@ |
| |
| checkwps: checkwps.c ../apps/gui/wps_parser.c ../apps/gui/wps_debug.c ../firmware/common/ctype.c |
| $(SILENT)$(CC) -g -I ../apps/gui -I../firmware/export \ |
| -D__PCTOOL__ -DDEBUG -DROCKBOX_HAS_LOGF -DIPOD_COLOR -D ROCKBOX_DIR_LEN=255 -D WPS_DIR=\".\" \ |
| -I../apps -I../firmware/target/arm/ipod -I../firmware/include $+ -o $@ |
| |
| convbdf: convbdf.c |
| $(SILENT)$(CC) -g $+ -o $@ |
| |
| codepages: codepages.c codepage_tables.c |
| $(SILENT)$(CC) -g $+ -o $@ |
| |
| player_unifont: player_unifont.c ../firmware/drivers/lcd-charset-player.c |
| $(SILENT)$(CC) -DARCHOS_PLAYER -D__PCTOOL__ -I../firmware/export $+ -o $@ |
| |
| uclpack: |
| $(SILENT)$(MAKE) -C ucl |
| |
| wavtrim: wavtrim.c |
| $(SILENT)$(CC) -g $+ -o $@ |
| |
| voicefont: voicefont.c |
| $(SILENT)$(CC) -g $+ -o $@ |
| |
| 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 |
| |