summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--utils/nwztools/plattools/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/utils/nwztools/plattools/Makefile b/utils/nwztools/plattools/Makefile
index 3031bc72b4..71188ba11a 100644
--- a/utils/nwztools/plattools/Makefile
+++ b/utils/nwztools/plattools/Makefile
@@ -12,6 +12,12 @@ ALL_ELF=$(patsubst %.c,%.elf,$(TOOL_FILES)) all_tools.elf dualboot.elf
12 12
13all: $(ALL_ELF) 13all: $(ALL_ELF)
14 14
15# image dependency
16data/rockbox_icon.h data/tools_icon.h:
17 make -C data
18
19dualboot.elf: data/rockbox_icon.h data/tools_icon.h
20
15%.elf: %.c $(LIB_FILES) 21%.elf: %.c $(LIB_FILES)
16 $(CC) $(CFLAGS) $(INCLUDES) -o $@ $^ 22 $(CC) $(CFLAGS) $(INCLUDES) -o $@ $^
17 23