当前位置: 技术问答>linux和unix
make -f makefile 时提示 Make: Must be a separator on rules line 5. Stop. 为什么,makefile 如下
来源: 互联网 发布时间:2015-05-18
本文导语: SHELL=/usr/bin/sh all:fork_exam fork_exam: fork_exam.c cc fork_exam.c -o fork_exam clean: rm *.o fork_exam | 命令行cc和rm之前必须是tab字符。
SHELL=/usr/bin/sh
all:fork_exam
fork_exam: fork_exam.c
cc fork_exam.c -o fork_exam
clean:
rm *.o fork_exam
all:fork_exam
fork_exam: fork_exam.c
cc fork_exam.c -o fork_exam
clean:
rm *.o fork_exam
|
命令行cc和rm之前必须是tab字符。