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

📄 makefile

📁 osapi 2.0 操作系统抽象层 "系统抽象层"使得你可以实现一种对于RTOS、CPU和所运行产品物理特性完全透明的软件。使用这种公共通用接口
💻
字号:
#### Filename: makefile#### Purpose:  Makefile to link Mac OS X image #### Modifications:################################################################################include ../../../../../prolog.makinclude $(MAKEINC)/config.makAPP_OBJS= \$(BUILDBASE)/common/$(APPLICATION)/$(APPLICATION)all.oOSAL_OBJS = \$(BUILDBASE)/os/osx/osal.o BSP_OBJS = \	../bsp/bsp.o \	../../hal/oshal.o ################################################################################ Links the final output binary.  Note we ignore object dependencies,## linking regardless.  This saves fooling around identifying## component object files- the link phase is fast anyway.  The object## module dependencies work like they should.####################################################################makeexecimage:	$(COMPILER) -g -o example-osx.bin $(APP_OBJS) $(OSAL_OBJS) $(BSP_OBJS) $(LDFLAGS) $(LIBS)	clean:	rm -f example-osx.bin

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -