makefile.machine.macosx
来自「这是一款很好用的工具包」· MACOSX 代码 · 共 69 行
MACOSX
69 行
## File: Makefile.macosx# Author: Chuck Wooters# Date: Mon July 29, 2002## Description:# Machine dependent compilation options and variable definitions# for Mac (PowerPCs) running Mac OS X 10.x # # Use the GNU C compiler. GCC_FLAGS = -Wreturn-type -Wimplicit CC = cc $(GCC_FLAGS) -Wimplicit-int CXX = c++ $(GCC_FLAGS) -DINSTANTIATE_TEMPLATES ARCHIVE = ar cru RANLIB = ranlib -s # Optional compilation flags. OPTIMIZE_FLAGS = -g -O2 -fno-common DEBUG_FLAGS = -g -DDEBUG PROFILE_FLAGS = -pg -g -O2 # Optional linking flags. EXPORT_LDFLAGS = # Shared compilation flags. CFLAGS = $(ADDITIONAL_CFLAGS) $(INCLUDES) -DHAVE_ZOPEN CXXFLAGS = $(ADDITIONAL_CXXFLAGS) $(INCLUDES) -DHAVE_ZOPEN # Shared linking flags. LDFLAGS = $(ADDITIONAL_LDFLAGS) -L$(SRILM_LIBDIR) # Other useful compilation flags. ADDITIONAL_CFLAGS = -DHAVE_ZOPEN ADDITIONAL_CXXFLAGS = -DHAVE_ZOPEN # Other useful include directories. ADDITIONAL_INCLUDES = # Other useful linking flags. ADDITIONAL_LDFLAGS = # Other useful libraries. ADDITIONAL_LIBRARIES = # Tcl support # This assumes that you have installed tcltk and tcltk-dev using # 'fink' as in: # fink install tcltk # fink install tcltk-dev # fink puts stuff in /sw TCL_INCLUDE = -I/sw/include TCL_LIBRARY = -L/sw/lib -ltcl SYMBOL_PREFIX = _ # Generate dependencies from source files. GEN_DEP = $(CC) $(CFLAGS) -MM GEN_DEP.cc = $(CXX) $(CXXFLAGS) -MM # Run lint. LINT = lint LINT_FLAGS = -DDEBUG $(CFLAGS) # Location of gawk binary GAWK = /sw/bin/gawk
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?