Ignore:
Timestamp:
Jun 20, 2012, 9:50:34 AM (12 years ago)
Author:
karaoui
Message:

Deleting unused folders
All ELF file have the extension *.elf
Must objetc file are now dumped in the build directory

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/apps/numsplit/Makefile

    r160 r161  
    1111SRCS=$(patsubst %.o,%.c,$(OBJS))
    1212
    13 all: $(APP_NAME).bin
     13all: $(APP_NAME).elf
    1414
    1515.PHONY: compile
    1616
    17 BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME).bin
     17BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME).elf
    1818
    19 $(APP_NAME).bin: compile $(APP_NAME).ld
     19$(APP_NAME).elf: compile $(APP_NAME).ld
    2020        $(LD) -o $(BIN_NAME_PATH) -T $(APP_NAME).ld $(OBJS) $(USES)
    2121        $(DU) -D $(BIN_NAME_PATH) > $@.txt
     
    2626
    2727clean:
    28         rm -f *.o *.bin *.txt core *~ 2>$(TRASH)
     28        rm -f *.o *.elf *.txt core *~ 2>$(TRASH)
    2929        rm $(BIN_NAME_PATH) 2>$(TRASH)
Note: See TracChangeset for help on using the changeset viewer.