diff options
Diffstat (limited to 'utils/nwztools')
-rw-r--r-- | utils/nwztools/plattools/Makefile | 6 |
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 all: $(ALL_ELF) +# image dependency +data/rockbox_icon.h data/tools_icon.h: + make -C data + +dualboot.elf: data/rockbox_icon.h data/tools_icon.h + %.elf: %.c $(LIB_FILES) $(CC) $(CFLAGS) $(INCLUDES) -o $@ $^ |