makefile

来自「unix网络编程的源码」· 代码 · 共 17 行

TXT
17
字号
include ../Make.defines

PROGS =	mainpipe mainfifo

all:	${PROGS}

mainpipe:	mainpipe.o client.o server.o mesg_send.o mesg_recv.o
		${CC} ${CFLAGS} -o $@ mainpipe.o client.o server.o \
			mesg_send.o mesg_recv.o ${LIBS}

mainfifo:	mainfifo.o client.o server.o mesg_send.o mesg_recv.o
		${CC} ${CFLAGS} -o $@ mainfifo.o client.o server.o \
			mesg_send.o mesg_recv.o ${LIBS}

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

⌨️ 快捷键说明

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