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

📄 stdtask.mak

📁 osapi 2.0 操作系统抽象层 "系统抽象层"使得你可以实现一种对于RTOS、CPU和所运行产品物理特性完全透明的软件。使用这种公共通用接口
💻 MAK
字号:
# -*-Makefile-*-################################################################################### Filename: stdtask.mak#### Purpose:  ST5 shared makefile definitions#### Modifications:#### 05/10/02  A.Ferrer, Code 582, Makefile cleanup.  Removed maketasklist rule.##           Renamed PROCS to DIRS.  Added comments.#################################################################################### Basic dependency rule# Rule to make the specified TARGET# The final output in any directory is the target objectLOPT=-r       #-r option needed to force link to not try to resolve dependencies$(TARGET): $(OBJS)	$(LINKER) $(LOPT) $(OBJS) -o $(TARGET)#################################################################################  ASSEMBLY CODE RULE##.s.o:	$(ASSEMBLER) $(ASOPTS) -o $*.o $*.S#################################################################################  "C" COMPILER RULE##.c.o:	$(COMPILER) $(COPT_T) $*.c################################################################################clean ::	find . -name "*.o" | (while read fn; do rm "$$fn"; done)	find . -name "*.lis" | (while read fn; do rm "$$fn"; done)##################################################################################depend dep:	$(COMPILER) -M $(COPT_D) $(SOURCES) > $(TMPDIR)/$(DEPENDFILE)	$(CAT) $(TMPDIR)/$(DEPENDFILE) | $(TR) -d \\r > $(DEPENDFILE)tbldepend:	$(COMPILER) -M $(COPT_D) $(SOURCES) > $(TMPDIR)/$(TBLDEPENDFILE)	$(CAT) $(TMPDIR)/$(TBLDEPENDFILE) | $(TR) -d \\r > $(TBLDEPENDFILE)# eof

⌨️ 快捷键说明

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