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

📄 makefile

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

PROGS =	abort.o child critical mask queue \
		raise.o read1 read2 readpart reenter \
		segv setops.o sigtstp sigusr \
		suspend1 suspend2 \
		system.o systest1 systest2 \
		trestart tsavedid tsiglist tsleep tsleep1 tsleep2 tsleep3 \
		ttellwait1 ttellwait2

all:	${PROGS}

systest1.o:
		${NOANSICOMPILE.c} systest1.c

# We want to link with our own version of system() for systest[12].
systest1: system.o systest1.o
		  $(LINK.c) -o $@ systest1.o system.o $(LDLIBS)

systest2: system.o systest2.o
		  $(LINK.c) -o $@ systest2.o system.o $(LDLIBS)

tsleep1:  sleep1.o tsleep1.o
		  $(LINK.c) -o $@ sleep1.o tsleep1.o $(LDLIBS)

tsleep2:  sleep2.o tsleep2.o
		  $(LINK.c) -o $@ sleep2.o tsleep2.o $(LDLIBS)

clean:
	rm -f ${PROGS} ${TEMPFILES}

⌨️ 快捷键说明

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