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

📄 makefile

📁 APUE(第二版)的随书源代码,与第一版的代码相比增加了一些章节的代码(详见第二版的说明)
💻
字号:
include ../Make.definesPROGS =	csize ctermid.o \		settty t_isatty t_getpass t_raw t_raw2 t_ttyname winchall:	${PROGS}t_isatty: t_isatty.o isatty.o		  ${LINK.c} -o $@ t_isatty.o isatty.o ${LDLIBS}t_getpass: t_getpass.o getpass.o		  ${LINK.c} -o $@ t_getpass.o getpass.o ${LDLIBS}t_raw: t_raw.o	   ${LINK.c} -o $@ t_raw.o ${LDLIBS}t_ttyname: t_ttyname.o ttyname.o		   ${LINK.c} -o $@ t_ttyname.o ttyname.o ${LDLIBS}# SunOS has a problem with its tty ioctl definitions.  The definition# for _IOR(x,y,t) assumes that 'x' on the right hand side gets replaced# with the first argument.  This isn't the way ANSI C works.  With gcc# you need to fix these headers or the winch.c file won't compile.clean:	rm -f ${PROGS} ${TEMPFILES}

⌨️ 快捷键说明

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