Adjust directory structure

This commit is contained in:
Zhao_Jiasheng
2021-06-03 17:38:11 +08:00
parent 92301257f3
commit 89a2236b18
1993 changed files with 40 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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 $@