From 003eeae1b9385719bd1b6a7355800787d8f49580 Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Sat, 11 Sep 2010 13:43:37 +0200 Subject: Added libpthread to the LIBS variable in the Makefile. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index cc1fdb3..ab777b4 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ CC = gcc CC_PARAMS = -O3 -Wall -Werror -fopenmp -c C_SOURCES = graymap.c graymap_alleg.c paledit.c mandelbrot.c OBJ = $(C_SOURCES:%.c=%.o) -LIBS = `allegro-config --libs` -lm -lgomp +LIBS = `allegro-config --libs` -lm -lgomp -lpthread mandelbrot: $(OBJ) $(CC) $(LIBS) -o mandelbrot $(OBJ) -- cgit v1.2.3-54-g00ecf