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

📄 makefile

📁 unix高级编程源代码.<<unix高级编程>>
💻
字号:
include ../Make.defines

PROGS =	csize ctermid.o \
		settty t_isatty t_getpass t_raw t_raw2 t_ttyname winch

all:	${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 + -