我正在尝试编写一个简单的 makefile,但缺少分隔符:
CC = g++ CFLAGS = -Wall -g all: compile compile: array.cpp $(CC) $(CFLAGS) array.cpp run: ./result.out
makefile
makefile ×1