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/fifo/Makefile

    r160 r161  
    88OBJS= main.o
    99
    10 all: $(APP_NAME).bin
     10all: $(APP_NAME).elf
    1111
    12 BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME).bin
     12BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME).elf
    1313
    14 $(APP_NAME).bin: $(OBJS) $(APP_NAME).ld
     14$(APP_NAME).elf: $(OBJS) $(APP_NAME).ld
    1515        $(LD) -o $(BIN_NAME_PATH) -T $(APP_NAME).ld $(OBJS) $(USES)
    1616        $(DU) -D $(BIN_NAME_PATH) > $@.txt
     
    2222
    2323clean:
    24         rm -f *.o *.bin *.txt core *~ 2>$(TRASH)
     24        rm -f *.o *.elf *.txt core *~ 2>$(TRASH)
    2525        rm $(BIN_NAME_PATH) 2>$(TRASH)
Note: See TracChangeset for help on using the changeset viewer.