diff options
author | Max Horn | 2009-07-02 22:05:42 +0000 |
---|---|---|
committer | Max Horn | 2009-07-02 22:05:42 +0000 |
commit | 51889298258f651a95f810cebd78c5b431f35472 (patch) | |
tree | 097ed0e77c452d853040f2844de42e4429335ca2 | |
parent | cea01452a7b6cfe59646c43935cff5877c985c29 (diff) | |
download | scummvm-rg350-51889298258f651a95f810cebd78c5b431f35472.tar.gz scummvm-rg350-51889298258f651a95f810cebd78c5b431f35472.tar.bz2 scummvm-rg350-51889298258f651a95f810cebd78c5b431f35472.zip |
cleanup
svn-id: r42040
-rw-r--r-- | backends/platform/ds/arm7/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/backends/platform/ds/arm7/Makefile b/backends/platform/ds/arm7/Makefile index 82637845db..a8dc0efe6e 100644 --- a/backends/platform/ds/arm7/Makefile +++ b/backends/platform/ds/arm7/Makefile @@ -151,13 +151,12 @@ $(OUTPUT).elf : $(OFILES) #--------------------------------------------------------------------------------- %.bin: %.elf @echo built ... $(notdir $@) - @$(OBJCOPY) -O binary $(TARGET).elf $@ + $(OBJCOPY) -O binary $(TARGET).elf $@ #--------------------------------------------------------------------------------- %.elf: echo ELF - @echo $(LD) $(LDFLAGS) -specs=ds_arm7.specs $(OFILES) $(LIBPATHS) $(LIBS) -o $(TARGET).elf - @$(LD) $(LDFLAGS) -specs=ds_arm7.specs $(OFILES) $(LIBPATHS) $(LIBS) -o $(TARGET).elf + $(LD) $(LDFLAGS) -specs=ds_arm7.specs $(OFILES) $(LIBPATHS) $(LIBS) -o $(TARGET).elf |