?? makefile
字號:
include ../Make.defines
PROGS = prodcons1 testeintr
FUNCS = sem_close.o sem_open.o sem_post.o sem_unlink.o sem_wait.o
all: ${PROGS}
prodcons1: prodcons1.o ${FUNCS}
${CC} ${CFLAGS} -o $@ prodcons1.o ${FUNCS} ${LIBS}
testeintr: testeintr.o ${FUNCS}
${CC} ${CFLAGS} -o $@ testeintr.o ${FUNCS} ${LIBS}
clean:
rm -f ${PROGS} ${CLEANFILES}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -