add my own broken example for uiowa-threads.c

This commit is contained in:
neingeist 2014-04-20 09:58:47 +02:00
parent 8141a18cab
commit a5638de011
3 changed files with 34 additions and 1 deletions

View file

@ -7,7 +7,8 @@ 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 \
wo-lernen lua-foo binsearch test-inline-assembly \
uiowa-threads-example uiowa-threads-my-example \
mtrace-test av-variance undefined-behaviour \
multibrot-openmp hello-openmp mandelbrot-openmp \
positional-format-strings
@ -81,6 +82,9 @@ mtrace-test.txt: mtrace-test.trace
uiowa-threads-example: uiowa-threads.o uiowa-threads-example.c
$(CC) $(CFLAGS) -o $@ $^
uiowa-threads-my-example: uiowa-threads.o uiowa-threads-my-example.c
$(CC) $(CFLAGS) -o $@ $^
av-variance: av-variance.c
$(CC) $(CFLAGS) -o $@ $< -lm