⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 minix3的源代码
💻
字号:
# Makefile for lib/ack/fphook.# The ACK ANSI C compiler has an nice trick to reduce the size of programs# that do not use floating point.  If a program uses floating point then the# compiler generates an external reference to the label '_fp_hook'.  This makes# the loader bring in the floating point printing and conversion routines# '_f_print' and 'strtod' from the library libd.a.  Otherwise two dummy# routines are found in libc.a.  (The printf and scanf need floating point# for the %f formats, whether you use them or not.)CFLAGS	= -O -D_MINIX -D_POSIX_SOURCE -I..LIBRARIES = libd libclibd_OBJECTS = fphook.olibc_OBJECTS = fltpr.o strtod.oinclude ../../Makefile.ack.inc

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -