freemyipod r698 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r697‎ | r698 | r699 >
Date:22:42, 23 April 2011
Author:theseven
Status:new
Tags:
Comment:
Installer Makefiles: Add AUTOBUILD_FLASHFILES option
Modified paths:
  • /apps/installer-ipodclassic/Makefile (modified) (history)
  • /apps/installer-ipodnano2g/Makefile (modified) (history)

Diff [purge]

Index: apps/installer-ipodclassic/Makefile
@@ -86,6 +86,10 @@
8787
8888 build/resources.o: flashfiles.built
8989
 90+ifeq ($(AUTOBUILD_FLASHFILES),true)
 91+flashfiles.built: flashfiles
 92+endif
 93+
9094 build/$(NAME).elf: ls.x $(OBJ)
9195 @echo [LD] $@
9296 @$(LD) $(LDFLAGS) -o $@ -T ls.x $(OBJ)
Index: apps/installer-ipodnano2g/Makefile
@@ -102,6 +102,10 @@
103103
104104 build/resources.o: flashfiles.built
105105
 106+ifeq ($(AUTOBUILD_FLASHFILES),true)
 107+flashfiles.built: flashfiles
 108+endif
 109+
106110 build/$(NAME).elf: ls.x $(OBJ) $(LIBS)
107111 @echo [LD] $@
108112 @$(LD) $(LDFLAGS) -o $@ -T ls.x $(OBJ) $(LIBS)