make -f makefile 时提示 Make: Must be a separator on rules line 5. Stop. 为什么,makefile 如下
SHELL=/usr/bin/sh
all:fork_exam
fork_exam: fork_exam.c
cc fork_exam.c -o fork_exam
clean:
rm *.o fork_exam
问题点数:20、回复次数:1Top
1 楼fierygnu(va_list)回复于 2003-12-02 16:43:45 得分 20
命令行cc和rm之前必须是tab字符。Top
相关问题