add bit fuckery

This commit is contained in:
orange 2013-06-09 20:56:25 +02:00
parent 2e2a01e5ba
commit cd58af7f7c
3 changed files with 74 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 mandelbrot.bmp threads circular-buffer structs
TARGETS=approximate-pi linked-list mandelbrot mandelbrot.bmp threads circular-buffer structs ncurses-pong bit-fuckery bit-fuckery2
.PHONY: all
all: $(TARGETS)
@ -22,3 +22,6 @@ mandelbrot.bmp: mandelbrot
threads: threads.c
$(CC) $(CFLAGS) -o $@ $< -pthread
ncurses-pong: ncurses-pong.c
$(CC) $(CFLAGS) -o $@ $< -lncurses