diff --git a/Chapter04/Makefile b/Chapter04/Makefile index 2b6f744..c24bcf8 100644 --- a/Chapter04/Makefile +++ b/Chapter04/Makefile @@ -8,7 +8,7 @@ CCFLAGS := -std=c++11 -g3 all: $(OUTPUT) $(OUTPUT): - $(GCC) -o $(OUTPUT) $(CCFLAGS) $(SOURCES) + $(GCC) -o $(OUTPUT) $(CCFLAGS) -pthread $(SOURCES) clean: rm $(OUTPUT)