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

    r160 r161  
    77OBJS= main.o
    88
    9 all: $(APP_NAME).bin
     9all: $(APP_NAME).elf
    1010
    11 BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME).bin
     11BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME).elf
    1212
    13 $(APP_NAME).bin: $(OBJS) $(APP_NAME).ld
     13$(APP_NAME).elf: $(OBJS) $(APP_NAME).ld
    1414        $(LD) -o $(BIN_NAME_PATH) -T $(APP_NAME).ld $(OBJS) $(USES)
    1515        $(DU) -D $(BIN_NAME_PATH) > $@.txt
     
    2121
    2222clean:
    23         rm -f *.o *.bin *.txt core *~ 2>$(TRASH)
     23        rm -f *.o *.elf *.txt core *~ 2>$(TRASH)
    2424        rm $(BIN_NAME_PATH) 2>$(TRASH)
Note: See TracChangeset for help on using the changeset viewer.