makefile
来自「该源码是一个比较经典的字符串处理函数」· 代码 · 共 43 行
TXT
43 行
## **********************************************************************# * Makefile *# * StringTokenizer *# * *# * Author: Arash Partow - 2000 *# * URL: http://www.partow.net/programming/stringtokenizer/index.html *# * *# * Copyright Notice: *# * Free use of this library is permitted under the guidelines and *# * in accordance with the most current version of the Common Public *# * License. *# * http://www.opensource.org/licenses/cpl.php *# * *# **********************************************************************#CC = c++OPTIONS = -pedantic -ansi -Wall -oOPTIONS_LIBS = -pedantic -ansi -Wall -call : StringTokenizer.o StrTokTestStringTokenizer.o : StringTokenizer.cpp StringTokenizer.h $(CC) $(OPTIONS_LIBS) StringTokenizer.cppStrTokTest : strtoktest.cpp StringTokenizer.o $(CC) $(OPTIONS) strtoktest strtoktest.cpp StringTokenizer.oclean: rm -f *.o *.bak## The End !#
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?