|
|
|
@ -5,8 +5,13 @@ CFLAGS=-std=c99 -Wextra -pedantic -g -O0
|
|
|
|
|
CC_OPENMP=gcc # no OpenMP in our clang
|
|
|
|
|
CFLAGS_OPENMP=$(CFLAGS) -fopenmp
|
|
|
|
|
|
|
|
|
|
TARGETS=approximate-pi linked-list mandelbrot threads circular-buffer structs ncurses-pong bit-fuckery bit-fuckery2 checkcheck multibrot bloom wo-lernen lua-foo binsearch test-inline-assembly uiowa-threads-example mtrace-test av-variance undefined-behaviour multibrot-openmp hello-openmp mandelbrot-openmp
|
|
|
|
|
EXTRAS=mandelbrot.bmp multibrot.png test-inline-assembly.s tags mtrace-test.trace mtrace-test.txt multibrot-openmp.png
|
|
|
|
|
TARGETS=approximate-pi linked-list mandelbrot threads circular-buffer structs \
|
|
|
|
|
ncurses-pong bit-fuckery bit-fuckery2 checkcheck multibrot bloom \
|
|
|
|
|
wo-lernen lua-foo binsearch test-inline-assembly uiowa-threads-example \
|
|
|
|
|
mtrace-test av-variance undefined-behaviour \
|
|
|
|
|
multibrot-openmp hello-openmp mandelbrot-openmp
|
|
|
|
|
EXTRAS=mandelbrot.bmp multibrot.png test-inline-assembly.s tags \
|
|
|
|
|
mtrace-test.trace mtrace-test.txt multibrot-openmp.png
|
|
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
|
all: $(TARGETS)
|
|
|
|
|