diff options
| author | Kevin Chabowski <kevin@kch42.de> | 2010-09-11 13:43:37 +0200 |
|---|---|---|
| committer | Kevin Chabowski <kevin@kch42.de> | 2010-09-11 13:43:37 +0200 |
| commit | 003eeae1b9385719bd1b6a7355800787d8f49580 (patch) | |
| tree | 58b86d3a0b9449266b1fd049e9aa16fee0d93384 | |
| parent | 054a617a9375b835492368c3773315b09d3851ce (diff) | |
| download | Another-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |
