freemyipod r458 - Code Review

Jump to: navigation, search
Repository:freemyipod
Revision:r457‎ | r458 | r459 >
Date:22:31, 19 January 2011
Author:theseven
Status:new
Tags:
Comment:
helloworld: Windows doesn't like those quotes in the Makefile. We need to find a better solution...
Modified paths:
  • /apps/helloworld/Makefile (modified) (history)

Diff [purge]

Index: apps/helloworld/Makefile
@@ -41,11 +41,11 @@
4242 endif
4343
4444 build/$(NAME).elf: ls.x $(OBJ)
45 - @echo "[LD] $@"
 45+ @echo [LD] $@
4646 @$(LD) $(LDFLAGS) -o $@ -T ls.x $(OBJ)
4747
4848 build/%.o: %.c build/version.h
49 - @echo "[CC] $<"
 49+ @echo [CC] $<
5050 ifeq ($(shell uname),WindowsNT)
5151 @-if not exist $(subst /,\,$(dir $@)) md $(subst /,\,$(dir $@))
5252 else
@@ -62,7 +62,7 @@
6363 @rm -f $@.dep.tmp
6464
6565 build/%.o: %.S build/version.h
66 - @echo "[CC] $<"
 66+ @echo [CC] $<
6767 ifeq ($(shell uname),WindowsNT)
6868 @-if not exist $(subst /,\,$(dir $@)) md $(subst /,\,$(dir $@))
6969 else
@@ -79,7 +79,7 @@
8080 @rm -f $@.dep.tmp
8181
8282 build/__emcore_%.o: $(EMCOREDIR)/export/%.S
83 - @echo "[CC] $<"
 83+ @echo [CC] $<
8484 ifeq ($(shell uname),WindowsNT)
8585 @-if not exist $(subst /,\,$(dir $@)) md $(subst /,\,$(dir $@))
8686 else
@@ -88,7 +88,7 @@
8989 @$(CC) -c $(CFLAGS) -o $@ $<
9090
9191 build/version.h: version.h .svn/entries build
92 - @echo "[PP] $<"
 92+ @echo [PP] $<
9393 ifeq ($(shell uname),WindowsNT)
9494 @sed -e "s/\$$REVISION\$$/$(REVISION)/" -e "s/\$$REVISIONINT\$$/$(REVISIONINT)/" < $< > $@
9595 else