📄 makefile_threadx
字号:
#
# This makefile assumes GNU make features
#
#Include master environment and project specific options
include ../../../../../../buildenv.mk
include ../../../../../projenv.mk
# Include some general definitions:
CONFIGDIR = $(XTENSA_ROOT)
include $(CONFIGDIR)/misc/hostenv.mk
include $(CONFIGDIR)/misc/build.mk
.PHONY: all clean cleand
# objects to build:
SRC = $(WIRELESS_PROTOCOL_C)
ASRC =
OBJS = $(SRC:.c=.o) $(ASRC:.S=.o)
DEP = $(SRC:.c=.d) $(ASRC:.S=.d)
all: buildconfig $(OBJS)
clean:
-$(RM) $(TARGETDIR)\*.o
cleand:
-$(RM) *.d
include ../../../../../../buildrules.mk
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -