我正在尝试编译一个 pthread 示例,但出现以下错误:
make: *** No rule to make target `example.cpp', needed by `example.o'. Stop.
这是我的生成文件:
CC = g++
CCFLAGS = -Wall
example: example.o
$(CC) $(CCFLAGS) -o example example.o -pthread
example.o: example.cpp
$(CC) $(CCFLAGS) -c example.cpp -pthread
clean:
- rm *.o
- rm example
我包括了 -pthread 标志,我不确定它还需要什么才能编译。有人有想法么?非常感谢你。