make.env
来自「大师写的二代小波经典之作」· ENV 代码 · 共 50 行
ENV
50 行
## make.env## File with global variables common for all the Makefile## Date : 04-Apr-1997# Author: Gabriel Fernandez# ShellSHELL=/bin/sh# Make flagsMFLAGS=# C compilerCC = cc# C definitions# Put any defines or misc. C compiler flags here. These will be used to# build your .o's. This line is usually left blank.## cc flags (full optimization for SunOS)# CDEF =-ansi -pedantic -O3 -fexpensive-optimizations -ffast-math\# -ffloat-store -funroll-loops -fforce-mem\# -fforce-addr -fomit-frame-pointer\# -fstrength-reduce -fthread-jumps## cc flags (full warning)# CDEF=-O2 -wlint -prototypes -fullwarn -Xcpluscomm -xansi -Wp,-B## gcc flags (full warning)# CDEF=-O2 -ansi -Wall## cc flags (for HPUX)# CDEF = -O -Aa## common flags (full optimization)CDEF=-O2# Debug mode# turn debug mode on with -g# turn assertions off with -DNDEBUG#DEBUG=-g3 -DNDEBUGDEBUG=-DNDEBUG# Data type# change data type to double with -DDOUBLE#DATATYPE=-DDOUBLEDATATYPE=
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?