Changeset 161 for soft/giet_vm/apps/numsplit/Makefile
- Timestamp:
- Jun 20, 2012, 9:50:34 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
soft/giet_vm/apps/numsplit/Makefile
r160 r161 11 11 SRCS=$(patsubst %.o,%.c,$(OBJS)) 12 12 13 all: $(APP_NAME). bin13 all: $(APP_NAME).elf 14 14 15 15 .PHONY: compile 16 16 17 BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME). bin17 BIN_NAME_PATH=$(BIN_PATH)$(APP_NAME).elf 18 18 19 $(APP_NAME). bin: compile $(APP_NAME).ld19 $(APP_NAME).elf: compile $(APP_NAME).ld 20 20 $(LD) -o $(BIN_NAME_PATH) -T $(APP_NAME).ld $(OBJS) $(USES) 21 21 $(DU) -D $(BIN_NAME_PATH) > $@.txt … … 26 26 27 27 clean: 28 rm -f *.o *. bin*.txt core *~ 2>$(TRASH)28 rm -f *.o *.elf *.txt core *~ 2>$(TRASH) 29 29 rm $(BIN_NAME_PATH) 2>$(TRASH)
Note: See TracChangeset
for help on using the changeset viewer.