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

📄 makefile

📁 如何将基于vxworks的应用程序移植到LINUX操作系统。
💻
字号:
#============================================================================#  Validation Suite Makefile#   #  Copyright (C) 2000  Monta Vista Software Inc.# #  Author : Gary S. Robertson# #  This program is free software; you can redistribute it and/or#  modify it under the terms of the GNU General Public License#  as published by the Free Software Foundation; either version 2#  of the License, or (at your option) any later version.# #  This program is distributed in the hope that it will be useful,#  but WITHOUT ANY WARRANTY; without even the implied warranty of#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the#  GNU General Public License for more details.#============================================================================##============================================================================## FILE NAME :  validate - VxWorks on Linux pthreads validation suite test##============================================================================#----------------------------------------------------------------------------# COMPILE macros#----------------------------------------------------------------------------.c.o:	$(CC) $(CFLAGS) -c $*.cCFLAGS	= -g -Wall -O2 -I. -Itarget_h -I- -D_GNU_SOURCE -D_REENTRANT#----------------------------------------------------------------------------# Make the program...#----------------------------------------------------------------------------OBJS =  \	kernelLib.o taskLib.o msgQLib.o semLib.o wdLib.o validate.oPROG = validateall:	$(PROG)$(PROG): $(OBJS) Makefile	$(CC) $(CFLAGS) $(OBJS) -o $(PROG) -lpthread#----------------------------------------------------------------------------# Compile modules w/ Inference rules#----------------------------------------------------------------------------clean:	rm -f *.o $(PROG)depend:	makedepend -s "# DO NOT DELETE" -- *.c# DO NOT DELETE THIS LINE -- make depend depends on it.

⌨️ 快捷键说明

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