Changeset 161 for soft/giet_vm/apps


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

Location:
soft/giet_vm/apps
Files:
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/apps/Makefile

    r160 r161  
    1414SYS_PATH        = $(SOFT_PATH)sys
    1515DUMP_PATH       = $(SOFT_PATH)  #where goes the generated *.bin
    16 BIN_PATH        = $(SOFT_PATH)
    1716MAP_PATH    = $(SOFT_PATH)xml
    1817BUILD_PATH      = $(SOFT_PATH)/build/
     18BIN_PATH        = $(SOFT_PATH)/build/
    1919
    2020INCLUDE         = -I$(LIB_PATH) -I$(SOFT_PATH) -I$(SYS_PATH) -I$(MAP_PATH)
  • 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)
  • soft/giet_vm/apps/hello/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)
  • 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)
  • 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)
  • soft/giet_vm/apps/router/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
     
    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.