?? makefile
字號(hào):
# HAVE_MALLOC_H= NO assume that the include file does not exist## Select HAVE_MALLOC_H= YES for DJGPP.## When in doubt, leave HAVE_MALLOC_H empty.#HAVE_MALLOC_H=#HAVE_MALLOC_H= YES#HAVE_MALLOC_H= NO# Determine if we have the <stdlib.h> include file.## HAVE_STDLIB_H= let the Makefile look for the include file# HAVE_STDLIB_H= YES assume that the include file exists# HAVE_STDLIB_H= NO assume that the include file does not exist## Select HAVE_STDLIB_H= YES for DJGPP.## When in doubt, leave HAVE_STDLIB_H empty.#HAVE_STDLIB_H=#HAVE_STDLIB_H= YES#HAVE_STDLIB_H= NO# Determine if we have the <string.h> include file.## HAVE_STRING_H= let the Makefile look for the include file# HAVE_STRING_H= YES assume that the include file exists# HAVE_STRING_H= NO assume that the include file does not exist## Select HAVE_STRING_H= YES for DJGPP.## When in doubt, leave HAVE_STRING_H empty.#HAVE_STRING_H=#HAVE_STRING_H= YES#HAVE_STRING_H= NO# Determine if we have the <times.h> include file.## HAVE_TIMES_H= let the Makefile look for the include file# HAVE_TIMES_H= YES assume that the include file exists# HAVE_TIMES_H= NO assume that the include file does not exist## Select HAVE_TIMES_H= NO for DJGPP.## When in doubt, leave HAVE_TIMES_H empty.#HAVE_TIMES_H=#HAVE_TIMES_H= YES#HAVE_TIMES_H= NO# Determine if we have the <sys/times.h> include file.## HAVE_SYS_TIMES_H= let the Makefile look for the include file# HAVE_SYS_TIMES_H= YES assume that the include file exists# HAVE_SYS_TIMES_H= NO assume that the include file does not exist## Select HAVE_SYS_TIMES_H= YES for DJGPP.## When in doubt, leave HAVE_SYS_TIMES_H empty.#HAVE_SYS_TIMES_H=#HAVE_SYS_TIMES_H= YES#HAVE_SYS_TIMES_H= NO# Determine if we have the <time.h> include file.## HAVE_TIME_H= let the Makefile look for the include file# HAVE_TIME_H= YES assume that the include file exists# HAVE_TIME_H= NO assume that the include file does not exist## Select HAVE_TIME_H= YES for DJGPP.## When in doubt, leave HAVE_TIME_H empty.#HAVE_TIME_H=#HAVE_TIME_H= YES#HAVE_TIME_H= NO# Determine if we have the <sys/time.h> include file.## HAVE_SYS_TIME_H= let the Makefile look for the include file# HAVE_SYS_TIME_H= YES assume that the include file exists# HAVE_SYS_TIME_H= NO assume that the include file does not exist## Select HAVE_SYS_TIME_H= YES for DJGPP.## When in doubt, leave HAVE_SYS_TIME_H empty.#HAVE_SYS_TIME_H=#HAVE_SYS_TIME_H= YES#HAVE_SYS_TIME_H= NO# Determine if we have the <unistd.h> include file.## HAVE_UNISTD_H= let the Makefile look for the include file# HAVE_UNISTD_H= YES assume that the include file exists# HAVE_UNISTD_H= NO assume that the include file does not exist## Select HAVE_UNISTD_H= YES for DJGPP.## When in doubt, leave HAVE_UNISTD_H empty.#HAVE_UNISTD_H=#HAVE_UNISTD_H= YES#HAVE_UNISTD_H= NO# Determine if our compiler allows the -Wno-implicit flag## HAVE_NO_IMPLICIT= let the Makefile test the -Wno-implicit flag# HAVE_NO_IMPLICIT= NO Our compiler does not have -Wno-implicit flags# HAVE_NO_IMPLICIT= YES Our compiler has a -Wno-implicit flag## Select HAVE_NO_IMPLICIT= for DJGPP.#HAVE_NO_IMPLICIT=# HAVE_NO_IMPLICIT= NO# HAVE_NO_IMPLICIT= YES# Determine if our compiler allows the unused attribute## If HAVE_UNUSED is empty, this Makefile will run the have_unused program# to determine if the unused attribute is supported. If HAVE_UNUSED is set to# -DHAVE_NO_UNUSED, then the unused attribute will not be used.## Select HAVE_UNUSED= for DJGPP.## If in doubt, leave HAVE_UNUSED empty and this Makefile will figure it out.#HAVE_UNUSED=#HAVE_UNUSED= -DHAVE_NO_UNUSED# System include files## ${INCDIR} where the system include (.h) files are kept## For DJGPP, select:## INCDIR= /dev/env/DJDIR/include## If in doubt, set:## INCDIR= /usr/include##INCDIR= /usr/local/include#INCDIR= /dev/env/DJDIR/includeINCDIR= /usr/include# Where to install calc realted things## ${BINDIR} where to install calc binary files# ${LIBDIR} where calc link library (*.a) files are installed# ${CALC_SHAREDIR} where to install calc help, .cal, startup, config files# ${CALC_INCDIR} where the calc include files are installed## NOTE: The install rule prepends installation paths with ${T}, which# by default is empty. If ${T} is non-empty, then installation# locations will be relative to the ${T} directory.## For DJGPP, select:## BINDIR= /dev/env/DJDIR/bin# LIBDIR= /dev/env/DJDIR/lib# CALC_SHAREDIR= /dev/env/DJDIR/share/calc## If in doubt, set:## BINDIR= /usr/bin# LIBDIR= /usr/lib# CALC_SHAREDIR= /usr/share/calc##BINDIR= /usr/local/bin#BINDIR= /dev/env/DJDIR/binBINDIR= /usr/bin#LIBDIR= /usr/local/lib#LIBDIR= /dev/env/DJDIR/libLIBDIR= /usr/lib#CALC_SHAREDIR= /usr/local/lib/calc#CALC_SHAREDIR= /dev/env/DJDIR/share/calcCALC_SHAREDIR= /usr/share/calc#CALC_INCDIR= /usr/local/include/calc#CALC_INCDIR= /dev/env/DJDIR/include/calcCALC_INCDIR= ${INCDIR}/calc# By default, these values are based CALC_SHAREDIR, INCDIR, BINDIR# ---------------------------------------------------------------# ${HELPDIR} where the help directory is installed# ${CUSTOMCALDIR} where custom *.cal files are installed# ${CUSTOMHELPDIR} where custom help files are installed# ${CUSTOMINCDIR} where custom .h files are installed# ${SCRIPTDIR} where calc shell scripts are installed## NOTE: The install rule prepends installation paths with ${T}, which# by default is empty. If ${T} is non-empty, then installation# locations will be relative to the ${T} directory.## If in doubt, set:## HELPDIR= ${CALC_SHAREDIR}/help# CALC_INCDIR= ${INCDIR}/calc# CUSTOMCALDIR= ${CALC_SHAREDIR}/custom# CUSTOMHELPDIR= ${CALC_SHAREDIR}/custhelp# CUSTOMINCDIR= ${CALC_INCDIR}/custom# SCRIPTDIR= ${BINDIR}/cscript#HELPDIR= ${CALC_SHAREDIR}/helpCUSTOMCALDIR= ${CALC_SHAREDIR}/customCUSTOMHELPDIR= ${CALC_SHAREDIR}/custhelpCUSTOMINCDIR= ${CALC_INCDIR}/customSCRIPTDIR= ${BINDIR}/cscript# T - top level directory under which calc will be installed## The calc install is performed under ${T}, the calc build is# performed under /. The purpose for ${T} is to allow someone# to install calc somewhere other than into the system area.## For example, if:## BINDIR= /usr/bin# LIBDIR= /usr/lib# CALC_SHAREDIR= /usr/share/calc## and if:## T= /var/tmp/testing## Then the installation locations will be:## calc binary files: /var/tmp/testing/usr/bin# calc link library: /var/tmp/testing/usr/lib# calc help, .cal ...: /var/tmp/testing/usr/share/calc# ... etc ... /var/tmp/testing/...## If ${T} is empty, calc is installed under /, which is the same# top of tree for which it was built. If ${T} is non-empty, then# calc is installed under ${T}, as if one had to chroot under# ${T} for calc to operate.## If in doubt, use T=#T=# where man pages are installed## Select MANDIR= /dev/env/DJDIR/man/man1 for DJGPP.## Use MANDIR= to disable installation of the calc man (source) page.##MANDIR=#MANDIR= /usr/local/man/man1#MANDIR= /usr/man/man1MANDIR= /usr/share/man/man1#MANDIR= /dev/env/DJDIR/man/man1#MANDIR= /usr/man/u_man/man1#MANDIR= /usr/contrib/man/man1# where cat (formatted man) pages are installed## Select CATDIR= /dev/env/DJDIR/man/cat1 for DJGPP.## Use CATDIR= to disable installation of the calc cat (formatted) page.#CATDIR=#CATDIR= /usr/local/man/cat1#CATDIR= /usr/local/catman/cat1#CATDIR= /usr/man/cat1#CATDIR= /usr/share/man/cat1#CATDIR= /dev/env/DJDIR/man/cat1#CATDIR= /var/cache/man/cat1#CATDIR= /usr/man/u_man/cat1#CATDIR= /usr/contrib/man/cat1# extension to add on to the calc man page filename## This is ignored if CATDIR is empty.#MANEXT= 1#MANEXT= l# extension to add on to the calc man page filename## This is ignored if CATDIR is empty.#CATEXT= 1#CATEXT= 1.gz#CATEXT= 0#CATEXT= l# how to format a man page## If CATDIR is non-empty, then## If NROFF is non-empty, then## ${NROFF} ${NROFF_ARG} calc.1 > ${CATDIR}/calc.${CATEXT}# is used to built and install the cat page## else (NROFF is empty)## ${MANMAKE} calc.1 ${CATDIR}# is used to built and install the cat page# else## The cat page is not built or installed## Select NROFF= groff for DJGPP.## If in doubt and you don't want to fool with man pages, set MANDIR# and CATDIR to empty and ignore the NROFF, NROFF_ARG and MANMAKE# lines below.##NROFF= nroffNROFF=#NROFF= groffNROFF_ARG= -man#NROFF_ARG= -mandocMANMAKE= /usr/local/bin/manmake#MANMAKE= manmakeMANMODE= 0444CATMODE= 0444# If the $CALCPATH environment variable is not defined, then the following# path will be search for calc resource file routines.## Select CALCPATH= .;./cal;~/.cal;${CALC_SHAREDIR};${CUSTOMCALDIR} for DJGPP.#CALCPATH= .:./cal:~/.cal:${CALC_SHAREDIR}:${CUSTOMCALDIR}#CALCPATH= .;./cal;~/.cal;${CALC_SHAREDIR};${CUSTOMCALDIR}# If the $CALCRC environment variable is not defined, then the following# path will be search for calc resource files.## Select CALCRC= ${CALC_SHAREDIR}/startup;~/.calcrc;./.calcinit for DJGPP.#CALCRC= ${CALC_SHAREDIR}/startup:~/.calcrc:./.calcinit#CALCRC= ${CALC_SHAREDIR}/startup;~/.calcrc;./.calcinit# Determine of the GNU-readline facility will be used instead of the# built-in calc binding method.## USE_READLINE= Do not use GNU-readline, use calc bindings# USE_READLINE= -DUSE_READLINE Use GNU-readline, do not use calc bindings## NOTE: If you select the 'USE_READLINE= -DUSE_READLINE' mode, you must set:## READLINE_LIB The flags needed to link in the readline# and history link libraries# READLINE_INCLUDE Where the readline include files reside# (leave blank if they are /usr/include/readline)## NOTE: The GNU-readline code is not shipped with calc. You must have# the appropriate headers and link libs installed on your system in# order to use it.## If in doubt, set USE_READLINE, READLINE_LIB and READLINE_INCLUDE to nothing.#USE_READLINE=#USE_READLINE= -DUSE_READLINE#READLINE_LIB=#READLINE_LIB= -lreadline -lhistory -lncurses#READLINE_LIB= -L/usr/gnu/lib -lreadline -lhistory -lncurses#READLINE_LIB= -L/usr/local/lib -lreadline -lhistory -lncurses## For Apple OS X: install fink from http://fink.sourceforge.net# and then do a 'fink install readline' and then use:##READLINE_LIB= -L/sw/lib -lreadline -lhistory -lncurses#READLINE_INCLUDE=#READLINE_INCLUDE= -I/usr/gnu/include#READLINE_INCLUDE= -I/usr/local/include# If $PAGER is not set, use this program to display a help file## Select CALCPAGER= less.exe -ci for DJGPP.##CALCPAGER= more#CALCPAGER= pg#CALCPAGER= catCALCPAGER= less#CALCPAGER= less.exe -ci# Debug/Optimize options for ${CC} and ${LCC}## Select DEBUG= -O2 -gstabs+ for DJGPP.##DEBUG=##DEBUG= -O#DEBUG= -O -g#DEBUG= -O -g3##DEBUG= -O1#DEBUG= -O1 -g#DEBUG= -O1 -g3##DEBUG= -O2#DEBUG= -O2 -g#DEBUG= -O2 -g3#DEBUG= -O2 -ipa#DEBUG= -O2 -g3 -ipa##DEBUG= -O3#DEBUG= -O3 -gDEBUG= -O3 -g3#DEBUG= -O3 -ipa#DEBUG= -O3 -g3 -ipa##DEBUG= -std0 -fast -O4 -static##DEBUG= -g#DEBUG= -g3#DEBUG= -gx#DEBUG= -WM,-g##DEBUG= -O2 -gstabs+# On systems that have dynamic shared link libs, you may want want to disable
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -