aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 979878eb893eba4f3a16a756389bf899ab284cc1 (plain)
1
2
3
4
5
6
7
8
9
all: mbrot-gen

mbrot-gen: mbrot-gen.c
	$(CC) -o $@ $< -lm -lpthread -Wall -Wextra


.PHONY: all clean
clean:
	- rm mbrot-gen -f