summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2010-09-11 13:43:37 +0200
committerKevin Chabowski <kevin@kch42.de>2010-09-11 13:43:37 +0200
commit003eeae1b9385719bd1b6a7355800787d8f49580 (patch)
tree58b86d3a0b9449266b1fd049e9aa16fee0d93384
parent054a617a9375b835492368c3773315b09d3851ce (diff)
downloadAnother-mandelbrot-viewer-003eeae1b9385719bd1b6a7355800787d8f49580.tar.gz
Another-mandelbrot-viewer-003eeae1b9385719bd1b6a7355800787d8f49580.tar.bz2
Another-mandelbrot-viewer-003eeae1b9385719bd1b6a7355800787d8f49580.zip
Added libpthread to the LIBS variable in the Makefile.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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)