我正在尝试编写一个简单的makefile,但是我错过了分隔符:
CC = g++
CFLAGS = -Wall -g
all: compile
compile: array.cpp
$(CC) $(CFLAGS) array.cpp
run: ./result.out
答案 0 :(得分:3)
尝试
CC = g++
CFLAGS = -Wall -g
all: compile
compile: array.cpp
$(CC) $(CFLAGS) array.cpp
run:
./result.out
并确保使用制表符进行缩进,而不是空格。