makefile
来自「PTypes是一个扩充了多线程和网络功能的STL库」· 代码 · 共 37 行
TXT
37 行
### C++ Portable Types Library (PTypes)# Version 2.0.2 Released 17-May-2004## Copyright (C) 2001-2004 Hovik Melikyan## http://www.melikyan.com/ptypes/#### Makefile for all Unix platforms, places the library in lib/,# the shared library in so/. Also builds the test program # src/ptypes_test and the sample program bin/wshare.#UMAKEFILE=Makefile.`uname|sed 's|/|_|;s|-.*||'`all: cd src ; make -f $(UMAKEFILE) all cd wshare ; make -f $(UMAKEFILE) allclean: cd src ; make -f $(UMAKEFILE) clean cd wshare ; make -f $(UMAKEFILE) cleanclean-src: cd src ; make -f $(UMAKEFILE) clean-src cd wshare ; make -f $(UMAKEFILE) clean-srcinstall: cd src ; make -f $(UMAKEFILE) installuninstall: cd src ; make -f $(UMAKEFILE) uninstall
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?