You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
625 B
Makefile

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 ncurses-pong bit-fuckery bit-fuckery2
.PHONY: all
all: $(TARGETS)
.PHONY: clean
clean:
rm -f $(TARGETS) *~
.PHONY: indent
indent:
indent $(INDENTOPTS) *.c
mandelbrot: mandelbrot.c
$(CC) $(CFLAGS) $(shell sdl-config --cflags) -o $@ $< $(shell sdl-config --libs) -lm
mandelbrot.bmp: mandelbrot
./mandelbrot
threads: threads.c
$(CC) $(CFLAGS) -o $@ $< -pthread
ncurses-pong: ncurses-pong.c
$(CC) $(CFLAGS) -o $@ $< -lncurses