亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
7777精品伊人久久久大香线蕉经典版下载 | 免费在线观看精品| 日韩美女视频一区二区| 久久中文字幕电影| 亚洲精品在线免费播放| 日韩一区二区在线看| 日韩一级片网址| 日韩女优毛片在线| 久久综合九色综合久久久精品综合| 337p亚洲精品色噜噜狠狠| 欧美乱妇一区二区三区不卡视频| 欧美日韩黄视频| 日韩一区二区三区av| 精品盗摄一区二区三区| 久久久不卡网国产精品二区| 亚洲精品综合在线| 国产精品久久久久久久浪潮网站| 国产精品丝袜黑色高跟| 亚洲日本丝袜连裤袜办公室| 亚洲乱码国产乱码精品精可以看 | 91久久精品一区二区| 色婷婷综合五月| 欧美视频在线观看一区二区| 欧美一级片在线| 26uuu亚洲综合色欧美| 国产清纯白嫩初高生在线观看91| 中文成人av在线| 亚洲一区在线观看免费| 久久电影网电视剧免费观看| 国产成人亚洲精品青草天美| 日本韩国精品在线| 欧美精品粉嫩高潮一区二区| 久久午夜电影网| 亚洲精品国产成人久久av盗摄| 婷婷开心激情综合| 国产成人av一区二区三区在线观看| 91香蕉视频mp4| 欧美精品久久久久久久多人混战 | 欧美日韩在线播放三区四区| 精品美女被调教视频大全网站| 亚洲国产精华液网站w | 88在线观看91蜜桃国自产| 精品免费视频.| 亚洲女人的天堂| 久久99国产精品免费| 91片在线免费观看| 精品国产一区二区三区av性色 | 欧美日韩国产大片| 国产目拍亚洲精品99久久精品| 一区二区三区中文字幕精品精品 | 国产精品一卡二| 久久九九全国免费| 亚洲福利视频一区二区| 粉嫩高潮美女一区二区三区| 这里是久久伊人| 一区二区在线电影| 成人av在线播放网址| 日韩免费视频线观看| 亚洲自拍偷拍网站| 99久久久国产精品免费蜜臀| 久久久久久毛片| 蜜臀久久99精品久久久画质超高清 | 久久久久国色av免费看影院| 日产精品久久久久久久性色| 欧美色大人视频| 亚洲图片激情小说| 成av人片一区二区| 国产人成一区二区三区影院| 麻豆国产欧美一区二区三区| 欧美日韩国产精选| 亚洲一区二区欧美日韩| 色综合天天综合网国产成人综合天| 久久综合狠狠综合久久综合88| 麻豆精品视频在线观看| 日韩一级完整毛片| 久久超碰97中文字幕| 日韩一级黄色大片| 精品一区二区国语对白| 欧美精品一区二区三区很污很色的| 日韩高清在线不卡| 日韩欧美一二三| 另类调教123区| 日韩一区有码在线| av男人天堂一区| 中文字幕在线不卡国产视频| 成人免费毛片嘿嘿连载视频| 中文字幕亚洲欧美在线不卡| 成人教育av在线| 日韩毛片视频在线看| 99国产精品久久久久久久久久久| 中文字幕免费不卡在线| 91偷拍与自偷拍精品| 一区二区三区四区av| 欧美电影一区二区三区| 精品一区二区三区免费| 久久综合九色综合久久久精品综合| 国产一区二区免费看| 国产精品成人免费| 精品视频在线免费| 精品午夜一区二区三区在线观看| 久久伊人中文字幕| 91论坛在线播放| 三级久久三级久久久| 久久免费偷拍视频| 一本久道中文字幕精品亚洲嫩| 亚洲国产日韩精品| 久久影院视频免费| 在线亚洲免费视频| 精品影视av免费| 亚洲精品乱码久久久久| 欧美一区二区女人| 97超碰欧美中文字幕| 成人h版在线观看| 亚洲成av人影院在线观看网| 精品国产乱子伦一区| 91污片在线观看| 黄色日韩网站视频| 亚洲曰韩产成在线| 久久久99久久精品欧美| 色哟哟国产精品免费观看| 捆绑紧缚一区二区三区视频| 国产精品无码永久免费888| 欧美日韩你懂的| 成人app下载| 激情小说欧美图片| 石原莉奈在线亚洲三区| 亚洲视频一区二区在线| 欧美一级高清片| 色综合天天综合网国产成人综合天| 麻豆精品视频在线观看视频| 亚洲自拍偷拍图区| 国产精品福利一区| 久久亚洲精品国产精品紫薇| 在线成人av影院| 欧日韩精品视频| 99久久国产综合精品色伊| 国产一区二区三区在线观看免费视频| 亚洲高清免费观看| 亚洲欧美电影院| 亚洲视频资源在线| 国产精品福利一区| 国产欧美精品区一区二区三区| 日韩精品在线一区二区| 欧美日本在线看| 欧美日韩在线电影| 欧美高清精品3d| 欧美日韩美少妇 | 成人福利视频网站| 麻豆91精品91久久久的内涵| 亚洲成a人片综合在线| 亚洲影视在线观看| 亚洲精品乱码久久久久久黑人| 中文字幕在线观看一区| 欧美激情在线看| 中文字幕不卡在线观看| 国产精品视频在线看| 国产精品丝袜一区| 中文字幕亚洲综合久久菠萝蜜| 国产精品欧美极品| 国产精品美日韩| 亚洲欧美偷拍三级| 亚洲一区二区免费视频| 婷婷国产v国产偷v亚洲高清| 午夜精品影院在线观看| 青青草97国产精品免费观看无弹窗版| 日本亚洲三级在线| 国产一区美女在线| 成人av一区二区三区| 日本高清免费不卡视频| 欧美日韩一区二区三区免费看| 欧美精品色综合| 欧美精品一区二区久久婷婷| 国产精品天天摸av网| 亚洲精品成人在线| 日韩va亚洲va欧美va久久| 国内精品在线播放| 91丝袜呻吟高潮美腿白嫩在线观看| 日本二三区不卡| 日韩视频在线永久播放| 中文幕一区二区三区久久蜜桃| 一区二区三区欧美| 精品一区二区三区的国产在线播放 | 美腿丝袜亚洲一区| 国产精华液一区二区三区| 欧美va亚洲va在线观看蝴蝶网| 精品国产欧美一区二区| 国产精品美女久久久久久久网站| 一卡二卡三卡日韩欧美| 蜜臀a∨国产成人精品| 成人aa视频在线观看| 制服丝袜国产精品| 亚洲欧洲成人自拍| 欧美aaaaaa午夜精品| 91天堂素人约啪| 精品噜噜噜噜久久久久久久久试看| 国产欧美日韩视频在线观看| 午夜精品成人在线| a级精品国产片在线观看| 日韩天堂在线观看| 亚洲一区在线观看免费观看电影高清|