makefile
来自「将将基于VXWORKS的应用转换成LINUX的关键库源代码」· 代码 · 共 62 行
TXT
62 行
#============================================================================# 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 - # Wind River VxWorks (R) on Linux pthreads validation suite test## VxWorks is a registered trademark of Wind River Systems, Inc.##============================================================================#----------------------------------------------------------------------------# COMPILE macros#----------------------------------------------------------------------------.c.o: $(CC) $(CFLAGS) -c $*.cCFLAGS = -g -Wall -O2 -I. -Itarget_h -I- -D_GNU_SOURCE -D_REENTRANT#----------------------------------------------------------------------------# Make the program...#----------------------------------------------------------------------------OBJS = \ lkernelLib.o ltaskLib.o lmsgQLib.o lsemLib.o lwdLib.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 + =
减小字号Ctrl + -
显示快捷键?