This commit is contained in:
orange 2013-08-31 17:42:46 +02:00
parent fcdc22b861
commit a0999008e0
5 changed files with 598 additions and 1 deletions

View file

@ -1,7 +1,7 @@
CFLAGS=-std=c99 -Wall -g -O2
INDENTOPTS=-kr --no-tabs --braces-on-func-def-line --indent-level2
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
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
EXTRAS=mandelbrot.bmp multibrot.png test-inline-assembly.s
.PHONY: all
@ -40,3 +40,6 @@ test-inline-assembly: test-inline-assembly.c
test-inline-assembly.s: test-inline-assembly.c
$(CC) -Wall -S -o $@ $<
uiowa-threads-example: uiowa-threads.o uiowa-threads-example.c
$(CC) $(CFLAGS) -o $@ $^