亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? makefile

?? Calc Software Package for Number Calc
??
?? 第 1 頁 / 共 5 頁
字號:
#!/bin/make## calc - arbitrary precision calculator## (Generic calc makefile)##  NOTE: This is NOT the calc rpm Makefile.  This Makefile is a generic#	 Makefile for the people who build calc from the gziped tarball.#	 Without modification, it not assume the system has readline, ncurses#	 or less.  It compiles with gcc -O3 -g3 as well.  You can change all#	 this by modifying the Makefile variables below.##  NOTE: You might want use the READLINE facility if  your system#	 has the GNU readline headers and libaraies:##	 USE_READLINE= -DUSE_READLINE#	 READLINE_LIB= -lreadline -lhistory -lncurses## Copyright (C) 1999-2006  Landon Curt Noll## Calc is open software; you can redistribute it and/or modify it under# the terms of the version 2.1 of the GNU Lesser General Public License# as published by the Free Software Foundation.## Calc is distributed in the hope that it will be useful, but WITHOUT# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General# Public License for more details.## A copy of version 2.1 of the GNU Lesser General Public License is# distributed with calc under the filename COPYING-LGPL.  You should have# received a copy with calc; if not, write to Free Software Foundation, Inc.# 59 Temple Place, Suite 330, Boston, MA  02111-1307, USA.#MAKEFILE_REV= $$Revision: 29.84 $$# @(#) $Id: Makefile.ship,v 29.84 2007/02/07 00:34:23 chongo Exp $# @(#) $Source: /usr/local/src/cmd/calc/RCS/Makefile.ship,v $## Under source code control:	1990/02/15 01:48:41# File existed as early as:	before 1990## chongo <was here> /\oo/\	http://www.isthe.com/chongo/# Share and enjoy!  :-)	http://www.isthe.com/chongo/tech/comp/calc/## calculator by David I. Bell with help/mods from others# Makefile by Landon Curt Noll###############################################################################-=-=-=-=-=-=-=-=- You may want to change some values below -=-=-=-=-=-=-=-=-################################################################################ Determine the type of terminal controls that you want to use##	value		  meaning#	--------	  -------#	(nothing)	  let the Makefile guess at what you need#	-DUSE_TERMIOS	  use struct termios from <termios.h>#	-DUSE_TERMIO	  use struct termios from <termio.h>#	-DUSE_SGTTY	  use struct sgttyb from <sys/ioctl.h>#	-DUSE_NOTHING	  windoz system, don't use any of them## Select TERMCONTROL= -DUSE_TERMIOS for DJGPP.## If in doubt, leave TERMCONTROL empty.#TERMCONTROL=#TERMCONTROL= -DUSE_TERMIOS#TERMCONTROL= -DUSE_TERMIO#TERMCONTROL= -DUSE_SGTTY#TERMCONTROL= -DUSE_WIN32# If your system does not have a vsprintf() function, you could be in trouble.##	vsprintf(stream, format, ap)## This function works like sprintf except that the 3rd arg is a va_list# strarg (or varargs) list.  Some old systems do not have vsprintf().# If you do not have vsprintf(), then calc will try sprintf() and hope# for the best.## If HAVE_VSPRINTF is empty, this Makefile will run the have_stdvs.c and/or# have_varvs.c program to determine if vsprintf() is supported.	 If# HAVE_VSPRINTF is set to -DDONT_HAVE_VSPRINTF then calc will hope that# sprintf() will work.## If in doubt, leave HAVE_VSPRINTF empty.#HAVE_VSPRINTF=#HAVE_VSPRINTF= -DDONT_HAVE_VSPRINTF# Determine the byte order of your machine##    Big Endian:	Amdahl, 68k, Pyramid, Mips, Sparc, ...#    Little Endian:	Vax, 32k, Spim (Dec Mips), i386, i486, ...## If in doubt, leave BYTE_ORDER empty.	This Makefile will attempt to# use BYTE_ORDER in <machine/endian.h> or it will attempt to run# the endian program.  If you get syntax errors when you compile,# try forcing the value to be -DBIG_ENDIAN and run the calc regression# tests. (see the README file)	If the calc regression tests fail, do# a make clobber and try -DLITTLE_ENDIAN.   If that fails, ask a wizard# for help.## Select BYTE_ORDER= -DLITTLE_ENDIAN for DJGPP.#BYTE_ORDER=#BYTE_ORDER= -DBIG_ENDIAN#BYTE_ORDER= -DLITTLE_ENDIAN# Determine the number of bits in a long## If in doubt, leave LONG_BITS empty.  This Makefile will run# the longbits program to determine the length.## In order to avoid make brain damage in some systems, we avoid placing# a space after the ='s below.## Select LONG_BITS= 32 for DJGPP.#LONG_BITS=#LONG_BITS= 32#LONG_BITS= 64# Determine if we have the ANSI C fgetpos and fsetpos alternate interface# to the ftell() and fseek() (with whence set to SEEK_SET) functions.## If HAVE_FPOS is empty, this Makefile will run the have_fpos program# to determine if there is are fgetpos and fsetpos functions.  If HAVE_FPOS# is set to -DHAVE_NO_FPOS, then calc will use ftell() and fseek().## If in doubt, leave HAVE_FPOS empty and this Makefile will figure it out.#HAVE_FPOS=#HAVE_FPOS= -DHAVE_NO_FPOS# Determine if we have an __pos element of a file position (fpos_t) structure.## If HAVE_FPOS_POS is empty, this Makefile will run the have_fpos_pos program# to determine if fpos_t has a __pos structure element.  If HAVE_FPOS_POS# is set to -DHAVE_NO_FPOS_POS, then calc assume there is no __pos element.## Select HAVE_FPOS_POS= -DHAVE_NO_FPOS_POS for DJGPP.## If in doubt, leave HAVE_FPOS_POS empty and this Makefile will figure it out.#HAVE_FPOS_POS=#HAVE_FPOS_POS= -DHAVE_NO_FPOS_POS# Determine the size of the __pos element in fpos_t, if it exists.## If FPOS_POS_BITS is empty, then the Makefile will determine the size of# the file position value of the __pos element.## If there is no __pos element in fpos_t (say because fpos_t is a scalar),# leave FPOS_POS_BITS blank.## If in doubt, leave FPOS_POS_BITS empty and this Makefile will figure it out.#FPOS_POS_BITS=#FPOS_POS_BITS= 32#FPOS_POS_BITS= 64# Determine the size of a file position value.## If FPOS_BITS is empty, then the Makefile will determine the size of# the file position value.## Select FPOS_BITS= 32 for DJGPP.## If in doubt, leave FPOS_BITS empty and this Makefile will figure it out.#FPOS_BITS=#FPOS_BITS= 32#FPOS_BITS= 64# Determine the size of the off_t file offset element## If OFF_T_BITS is empty, then the Makefile will determine the size of# the file offset value.## Select OFF_T_BITS= 32 for DJGPP.## If in doubt, leave OFF_T_BITS empty and this Makefile will figure it out.#OFF_T_BITS=#OFF_T_BITS= 32#OFF_T_BITS= 64# Determine the size of the dev_t device value## If DEV_BITS is empty, then the Makefile will determine the size of# the dev_t device value## Select DEV_BITS= 32 for DJGPP.## If in doubt, leave DEV_BITS empty and this Makefile will figure it out.#DEV_BITS=#DEV_BITS= 16#DEV_BITS= 32#DEV_BITS= 64# Determine the size of the ino_t device value## If INODE_BITS is empty, then the Makefile will determine the size of# the ino_t inode value## Select INODE_BITS= 32 for DJGPP.## If in doubt, leave INODE_BITS empty and this Makefile will figure it out.#INODE_BITS=#INODE_BITS= 16#INODE_BITS= 32#INODE_BITS= 64# Determine if we have an off_t which one can perform arithmetic operations,# assignments and comparisons.	On some systems off_t is some sort of union# or struct.## If HAVE_OFFSCL is empty, this Makefile will run the have_offscl program# to determine if off_t is a scalar.  If HAVE_OFFSCL is set to the value# -DOFF_T_NON_SCALAR when calc will assume that off_t some sort of# union or struct which.## If in doubt, leave HAVE_OFFSCL empty and this Makefile will figure it out.#HAVE_OFFSCL=#HAVE_OFFSCL= -DOFF_T_NON_SCALAR# Determine if we have an fpos_t which one can perform arithmetic operations,# assignments and comparisons.	On some systems fpos_t is some sort of union# or struct.  Some systems do not have an fpos_t and long is as a file# offset instead.## If HAVE_POSSCL is empty, this Makefile will run the have_offscl program# to determine if off_t is a scalar, or if there is no off_t and long# (a scalar) should be used instead.  If HAVE_POSSCL is set to the value# -DFILEPOS_NON_SCALAR when calc will assume that fpos_t exists and is# some sort of union or struct which.## If in doubt, leave HAVE_POSSCL empty and this Makefile will figure it out.#HAVE_POSSCL=#HAVE_POSSCL= -DFILEPOS_NON_SCALAR# Determine if we have ANSI C const.## If HAVE_CONST is empty, this Makefile will run the have_const program# to determine if const is supported.  If HAVE_CONST is set to -DHAVE_NO_CONST,# then calc will not use const.## If in doubt, leave HAVE_CONST empty and this Makefile will figure it out.#HAVE_CONST=#HAVE_CONST= -DHAVE_NO_CONST# Determine if we have uid_t## If HAVE_UID_T is empty, this Makefile will run the have_uid_t program# to determine if const is supported.  If HAVE_UID_T is set to -DHAVE_NO_UID_T,# then calc will treat uid_t as an unsigned short.  This only matters if# $HOME is not set and calc must look up the home directory in /etc/passwd.## If in doubt, leave HAVE_UID_T empty and this Makefile will figure it out.#HAVE_UID_T=#HAVE_UID_T= -DHAVE_NO_UID_T# Determine if we have memcpy(), memset() and strchr()## If HAVE_NEWSTR is empty, this Makefile will run the have_newstr program# to determine if memcpy(), memset() and strchr() are supported.  If# HAVE_NEWSTR is set to -DHAVE_NO_NEWSTR, then calc will use bcopy() instead# of memcpy(), use bfill() instead of memset(), and use index() instead of# strchr().## If in doubt, leave HAVE_NEWSTR empty and this Makefile will figure it out.#HAVE_NEWSTR=#HAVE_NEWSTR= -DHAVE_NO_NEWSTR# Determine if we have memmove()## If HAVE_MEMMOVE is empty, this Makefile will run the have_memmv program# to determine if memmove() is supported.  If HAVE_MEMMOVE is set to# -DHAVE_NO_MEMMOVE, then calc will use internal functions to simulate# the memory move function that does correct overlapping memory modes.## If in doubt, leave HAVE_MEMMOVE empty and this Makefile will figure it out.#HAVE_MEMMOVE=#HAVE_MEMMOVE= -DHAVE_NO_MEMMOVE# Determine if we have ustat()## If HAVE_USTAT is empty, this Makefile will run the have_memmv program# to determine if ustat() is supported.	 If HAVE_USTAT is set to# -DHAVE_NO_USTAT, then calc will use internal functions to simulate# the memory move function that does correct overlapping memory modes.## Select HAVE_USTAT= -DHAVE_NO_USTAT for DJGPP.## If in doubt, leave HAVE_USTAT empty and this Makefile will figure it out.#HAVE_USTAT=#HAVE_USTAT= -DHAVE_NO_USTAT# Determine if we have getsid()## If HAVE_GETSID is empty, this Makefile will run the have_memmv program# to determine if getsid() is supported.  If HAVE_GETSID is set to# -DHAVE_NO_GETSID, then calc will use internal functions to simulate# the memory move function that does correct overlapping memory modes.## Select HAVE_GETSID= -DHAVE_NO_GETSID for DJGPP.## If in doubt, leave HAVE_GETSID empty and this Makefile will figure it out.#HAVE_GETSID=#HAVE_GETSID= -DHAVE_NO_GETSID# Determine if we have getpgid()## If HAVE_GETPGID is empty, this Makefile will run the have_memmv program# to determine if getpgid() is supported.  If HAVE_GETPGID is set to# -DHAVE_NO_GETPGID, then calc will use internal functions to simulate# the memory move function that does correct overlapping memory modes.## Select HAVE_GETPGID= -DHAVE_NO_GETPGID for DJGPP.## If in doubt, leave HAVE_GETPGID empty and this Makefile will figure it out.#HAVE_GETPGID=#HAVE_GETPGID= -DHAVE_NO_GETPGID# Determine if we have clock_gettime()## If HAVE_GETTIME is empty, this Makefile will run the have_memmv program# to determine if clock_gettime() is supported.	 If HAVE_GETTIME is set to# -DHAVE_NO_GETTIME, then calc will use internal functions to simulate# the memory move function that does correct overlapping memory modes.## Select HAVE_GETTIME= -DHAVE_NO_GETTIME for DJGPP.## If in doubt, leave HAVE_GETTIME empty and this Makefile will figure it out.#HAVE_GETTIME=#HAVE_GETTIME= -DHAVE_NO_GETTIME# Determine if we have getprid()## If HAVE_GETPRID is empty, this Makefile will run the have_memmv program# to determine if getprid() is supported.  If HAVE_GETPRID is set to# -DHAVE_NO_GETPRID, then calc will use internal functions to simulate# the memory move function that does correct overlapping memory modes.## Select HAVE_GETPRID= -DHAVE_NO_GETPRID for DJGPP.## If in doubt, leave HAVE_GETPRID empty and this Makefile will figure it out.#HAVE_GETPRID=#HAVE_GETPRID= -DHAVE_NO_GETPRID# Determine if we have the /dev/urandom##    HAVE_URANDOM_H=		let the Makefile look /dev/urandom#    HAVE_URANDOM_H= YES	assume that /dev/urandom exists#    HAVE_URANDOM_H= NO		assume that /dev/urandom does not exist## Select HAVE_URANDOM_H= NO for DJGPP.## When in doubt, leave HAVE_URANDOM_H empty.#HAVE_URANDOM_H=#HAVE_URANDOM_H= YES#HAVE_URANDOM_H= NO# Determine if we have getrusage()## If HAVE_GETRUSAGE is empty, this Makefile will run the have_memmv program# to determine if getrusage() is supported.  If HAVE_GETRUSAGE is set to# -DHAVE_NO_GETRUSAGE, then calc will use internal functions to simulate# the memory move function that does correct overlapping memory modes.## If in doubt, leave HAVE_GETRUSAGE empty and this Makefile will figure it out.#HAVE_GETRUSAGE=#HAVE_GETRUSAGE= -DHAVE_NO_GETRUSAGE# Determine if we have strdup()## If HAVE_STRDUP is empty, this Makefile will run the have_memmv program# to determine if strdup() is supported.  If HAVE_STRDUP is set to# -DHAVE_NO_STRDUP, then calc will use internal functions to simulate# the memory move function that does correct overlapping memory modes.## If in doubt, leave HAVE_STRDUP empty and this Makefile will figure it out.#HAVE_STRDUP=#HAVE_STRDUP= -DHAVE_NO_STRDUP# Some architectures such as Sparc do not allow one to access 32 bit values# that are not alligned on a 32 bit boundary.## The Dec Alpha running OSF/1 will produce alignment error messages when# align32.c tries to figure out if alignment is needed.	 Use the# ALIGN32= -DMUST_ALIGN32 to force alignment and avoid such error messages.## ALIGN32=		     let align32.c figure out if alignment is needed# ALIGN32= -DMUST_ALIGN32    force 32 bit alignment# ALIGN32= -UMUST_ALIGN32    allow non-alignment of 32 bit accesses## Select ALIGN32= -UMUST_ALIGN32 for DJGPP.## When in doubt, be safe and pick ALIGN32=-DMUST_ALIGN32.#ALIGN32=#ALIGN32= -DMUST_ALIGN32#ALIGN32= -UMUST_ALIGN32# Determine if we have the <malloc.h> include file.##    HAVE_MALLOC_H=		let the Makefile look for the include file#    HAVE_MALLOC_H= YES		assume that the include file exists

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品99久久久久久有的能看 | 亚洲欧美视频一区| 自拍视频在线观看一区二区| 午夜欧美2019年伦理| 国产中文字幕精品| 欧美日韩亚州综合| 中文字幕第一区二区| 美国毛片一区二区| 欧美亚洲国产一卡| 亚洲另类春色校园小说| 国产精品1区二区.| 欧美不卡激情三级在线观看| 亚洲一区二区在线播放相泽| eeuss鲁片一区二区三区| 欧美成人综合网站| 免费看日韩a级影片| 蜜桃av噜噜一区| 日韩欧美高清在线| 亚洲欧美日韩国产一区二区三区| 亚洲444eee在线观看| 91在线观看成人| 国产三区在线成人av| 亚洲成a天堂v人片| www.欧美日韩国产在线| 久久精品无码一区二区三区| 激情深爱一区二区| 日韩欧美在线不卡| 五月天网站亚洲| 欧美精品在线观看播放| 亚洲激情成人在线| 欧美最新大片在线看| 伊人色综合久久天天| 日本乱人伦aⅴ精品| 亚洲你懂的在线视频| 色菇凉天天综合网| 一卡二卡欧美日韩| 欧美日韩在线直播| 日本欧美肥老太交大片| 欧美成人video| 国产伦精一区二区三区| 欧美国产激情一区二区三区蜜月| 国产高清一区日本| 中文字幕一区在线观看视频| aa级大片欧美| 亚洲成人综合在线| 欧美一区二区三区四区五区| 美脚の诱脚舐め脚责91| 欧美精品一区二区久久婷婷| 国产精品一区二区三区网站| 国产精品久久久久影院老司| 色网综合在线观看| 秋霞国产午夜精品免费视频| 精品嫩草影院久久| www.欧美日韩| 亚洲h精品动漫在线观看| 日韩一级片在线播放| 国产在线一区观看| 亚洲人精品一区| 欧美人体做爰大胆视频| 激情欧美一区二区三区在线观看| 国产精品午夜电影| 欧美唯美清纯偷拍| 国产在线一区二区| 亚洲女人****多毛耸耸8| 欧美一区二区三区公司| 国产成人在线观看免费网站| 亚洲男人的天堂网| 欧美成人精品3d动漫h| av亚洲精华国产精华精华 | 国产精品美女视频| 欧美四级电影在线观看| 国产麻豆日韩欧美久久| 亚洲精品久久久久久国产精华液| 日韩欧美一区二区免费| 91原创在线视频| 九九国产精品视频| 亚洲欧美电影一区二区| 日韩精品中文字幕在线不卡尤物| 99久久夜色精品国产网站| 五月开心婷婷久久| 国产精品国产三级国产普通话99 | 国产99久久精品| 亚洲一区二区三区在线| 久久精品视频免费| 在线成人小视频| 色诱亚洲精品久久久久久| 国产在线一区观看| 五月天欧美精品| 亚洲色大成网站www久久九九| 日韩免费看的电影| 欧美日韩精品欧美日韩精品一 | 国产一区二区三区免费| 亚洲一区二区五区| 国产精品理论片| 精品国产乱子伦一区| 欧美人伦禁忌dvd放荡欲情| 99综合电影在线视频| 国产呦精品一区二区三区网站| 亚洲一二三专区| 亚洲日本成人在线观看| 中文字幕精品—区二区四季| 欧美精品一区二区在线观看| 欧美一区二区三区视频| 欧美猛男超大videosgay| 91免费看`日韩一区二区| youjizz久久| 国产成人免费视频网站| 国产美女精品一区二区三区| 蜜桃91丨九色丨蝌蚪91桃色| 亚洲一区二区三区精品在线| 亚洲精品国产a| 亚洲欧洲日本在线| 国产精品久久久一本精品| 欧美国产丝袜视频| 国产欧美日韩精品一区| 国产日本欧洲亚洲| 中文字幕第一页久久| 国产精品系列在线| 中文字幕日韩av资源站| 国产精品久久久久一区二区三区| 欧美激情综合在线| 综合欧美亚洲日本| 一区二区三区色| 亚洲成a人v欧美综合天堂下载| 一区二区在线观看视频| 亚洲国产视频在线| 视频在线观看国产精品| 人人狠狠综合久久亚洲| 国产一区二区美女诱惑| 国产露脸91国语对白| 成人三级伦理片| 91视视频在线观看入口直接观看www | 成人国产精品免费观看视频| 成人永久aaa| 色乱码一区二区三区88| 在线观看一区二区精品视频| 在线不卡免费av| 欧美va日韩va| 综合久久久久综合| 亚洲电影在线播放| 国产在线精品一区在线观看麻豆| 国产精品影视网| 91成人在线观看喷潮| 91精品国产一区二区| 久久久精品国产免大香伊| 中文字幕在线不卡一区| 五月天精品一区二区三区| 国产一区二区三区香蕉| 91在线国产观看| 欧美一区二区精美| 国产精品网站在线观看| 午夜精品福利在线| 国产精一品亚洲二区在线视频| 一本一道久久a久久精品| 欧美一区二区三区免费在线看 | 777xxx欧美| 国产亚洲精品超碰| 亚洲成国产人片在线观看| 国产乱码字幕精品高清av| 欧美色老头old∨ideo| 精品久久人人做人人爽| 亚洲精品乱码久久久久久黑人| 裸体健美xxxx欧美裸体表演| 不卡电影免费在线播放一区| 日韩精品中午字幕| 一区二区三区色| 国产999精品久久久久久绿帽| 欧美日韩aaaaaa| ●精品国产综合乱码久久久久| 看国产成人h片视频| 色婷婷综合五月| 日本一区二区电影| 蜜桃av一区二区| 欧美影院午夜播放| 亚洲色图清纯唯美| 国产成人在线视频网址| 日韩欧美一级特黄在线播放| 一区二区三区 在线观看视频| 成人晚上爱看视频| 久久综合九色综合欧美亚洲| 五月开心婷婷久久| 欧美视频一区在线| 综合中文字幕亚洲| 北岛玲一区二区三区四区| 久久日韩粉嫩一区二区三区| 首页亚洲欧美制服丝腿| 91官网在线观看| 亚洲欧美一区二区三区孕妇| 风间由美一区二区av101| 久久久久久97三级| 国内精品免费**视频| 91精品国产色综合久久不卡蜜臀 | 久久久久国产精品厨房| 免费在线视频一区| 日韩西西人体444www| 日韩一区精品字幕| 欧美一级二级三级蜜桃| 日韩精品高清不卡| 日韩女优av电影| 激情欧美一区二区三区在线观看|