Changeset 161 for soft/giet_vm/apps/hello/Makefile
- Timestamp:
- Jun 20, 2012, 9:50:34 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/apps/hello/Makefile
r160 r161 7 7 OBJS= main.o 8 8 9 all: $(APP_NAME). bin9 all: $(APP_NAME).elf 10 10 11 BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME). bin11 BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME).elf 12 12 13 $(APP_NAME). bin: $(OBJS) $(APP_NAME).ld13 $(APP_NAME).elf: $(OBJS) $(APP_NAME).ld 14 14 $(LD) -o $(BIN_NAME_PATH) -T $(APP_NAME).ld $(OBJS) $(USES) 15 15 $(DU) -D $(BIN_NAME_PATH) > $@.txt … … 21 21 22 22 clean: 23 rm -f *.o *. bin*.txt core *~ 2>$(TRASH)23 rm -f *.o *.elf *.txt core *~ 2>$(TRASH) 24 24 rm $(BIN_NAME_PATH) 2>$(TRASH)
Note: See TracChangeset
for help on using the changeset viewer.