最佳答案
可能的复制品:
发生错误: 缺少分隔符
在 makefile 中包含以下代码:
PROG = semsearch
all: $(PROG)
%: %.c
gcc -o $@ $< -lpthread
clean:
rm $(PROG)
和错误
missing separator. stop.
有人能帮帮我吗?