Makefile:9:***缺少分隔符。停止

时间:2015-04-24 05:56:19

标签: makefile

我正在尝试编写一个简单的makefile,但是我错过了分隔符:

CC =  g++
CFLAGS =  -Wall -g

all:  compile 

compile:  array.cpp
  $(CC) $(CFLAGS)  array.cpp

run:  ./result.out

1 个答案:

答案 0 :(得分:3)

尝试

CC = g++ 
CFLAGS = -Wall -g

all: compile

compile: array.cpp
    $(CC) $(CFLAGS) array.cpp

run: 
    ./result.out

并确保使用制表符进行缩进,而不是空格。