按老师说的输入gcc max.c hello.c -o main.out后就报错了,不知道为什么?
2018-11-19
#This is Mikefile
OBJ:=hello.out
cc:=gcc
$(OBJ):max.o min.o hello.c
$(cc) max.o min.o hello.c -o hello.out
max.o:max.c
$(cc) -c max.c
min.o:min.c
$(cc) -c min.c
.PHONY:clean
clean:
-rm ./*.o $(OBJ)
OBJ:=hello.out
cc:=gcc
$(OBJ):max.o min.o hello.c
$(cc) max.o min.o hello.c -o hello.out
max.o:max.c
$(cc) -c max.c
min.o:min.c
$(cc) -c min.c
.PHONY:clean
clean:
-rm ./*.o $(OBJ)
2018-11-10