forked from xuos/xiuos
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
347 B
10 lines
347 B
OBJS := $(shell cat make.obj)
|
|
|
|
$(TARGET): $(OBJS)
|
|
@echo ------------------------------------------------
|
|
@echo link $(TARGET)
|
|
@$(CROSS_COMPILE)g++ -o $@ $($(LINK_FLAGS)) $(OBJS) -lc -lm
|
|
@echo ------------------------------------------------
|
|
@$(CROSS_COMPILE)objcopy -O binary $@ XiUOS_$(BOARD)$(COMPILE_TYPE).bin
|
|
@$(CROSS_COMPILE)size $@
|
|
|
|
|