add unfinished multibrot

This commit is contained in:
orange 2013-06-16 14:10:10 +02:00
parent ec4a0e1b75
commit 1b4f1b7592
3 changed files with 186 additions and 3 deletions

View file

@ -1,14 +1,15 @@
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
TARGETS=approximate-pi linked-list mandelbrot threads circular-buffer structs ncurses-pong bit-fuckery bit-fuckery2 checkcheck multibrot
EXTRAS=mandelbrot.bmp multibrot.png
.PHONY: all
all: $(TARGETS)
all: $(TARGETS) $(EXTRAS)
.PHONY: clean
clean:
rm -f $(TARGETS) *~
rm -f $(TARGETS) $(EXTRAS) *~
.PHONY: indent
indent:
@ -28,3 +29,9 @@ ncurses-pong: ncurses-pong.c
checkcheck: checkcheck.c
$(CC) $(CFLAGS) -o $@ $< -lcheck
multibrot: multibrot.c
$(CC) $(CFLAGS) -o $@ $< -lm -lpng
multibrot.png: multibrot
./multibrot