summaryrefslogtreecommitdiff
path: root/utils/nwztools/plattools/Makefile
diff options
context:
space:
mode:
authorAmaury Pouly <amaury.pouly@gmail.com>2016-11-11 16:01:14 +0100
committerAmaury Pouly <amaury.pouly@gmail.com>2016-11-11 16:07:14 +0100
commitc95e30b75d75b674f0d645b7c41377bbd0511213 (patch)
tree3a0d6253a0a5cab8cbc14b1258f0b2d7b4f74e0d /utils/nwztools/plattools/Makefile
parent44bb2856a59be53ef5ede154a39c54a59b1cc6d0 (diff)
downloadrockbox-c95e30b75d75b674f0d645b7c41377bbd0511213.tar.gz
rockbox-c95e30b75d75b674f0d645b7c41377bbd0511213.zip
nwztools/plattools: use player database and rework stuff
Using the database, we can now safely read/write the NVP. I also add more support for Sony's "display" tool. Change-Id: I8439fe9bad391c7f29859d99f236781be7983625
Diffstat (limited to 'utils/nwztools/plattools/Makefile')
-rw-r--r--utils/nwztools/plattools/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/utils/nwztools/plattools/Makefile b/utils/nwztools/plattools/Makefile
index 067b4a7033..3031bc72b4 100644
--- a/utils/nwztools/plattools/Makefile
+++ b/utils/nwztools/plattools/Makefile
@@ -2,9 +2,10 @@ PREFIX?=arm-sony-linux-gnueabi-
2CC=$(PREFIX)gcc 2CC=$(PREFIX)gcc
3LD=$(PREFIX)gcc 3LD=$(PREFIX)gcc
4CFLAGS=-std=gnu99 -Wall -O2 4CFLAGS=-std=gnu99 -Wall -O2
5INCLUDES=-I. 5NWZ_DB_DIR=../database
6INCLUDES=-I. -I$(NWZ_DB_DIR)
6 7
7LIB_FILES=nwz_lib.c nwz_lib_devlist.c 8LIB_FILES=nwz_lib.c $(NWZ_DB_DIR)/nwz_db.c
8TOOL_FILES=dest_tool.c test_adc.c test_adc.c test_bl.c test_display.c \ 9TOOL_FILES=dest_tool.c test_adc.c test_adc.c test_bl.c test_display.c \
9 test_keys.c test_power.c test_ts.c test_fb.c 10 test_keys.c test_power.c test_ts.c test_fb.c
10ALL_ELF=$(patsubst %.c,%.elf,$(TOOL_FILES)) all_tools.elf dualboot.elf 11ALL_ELF=$(patsubst %.c,%.elf,$(TOOL_FILES)) all_tools.elf dualboot.elf