⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile_threadx

📁 marvell cf wifi driver source code CF-8385-linux-x86-5.0.4.p0-132-src.rar
💻
字号:
#
# 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 + -