about summary refs log tree commit diff
path: root/Makefile
blob: bae0a04de68ca362b0508fa463e9b16da2e4f88c (plain) (blame)
1
2
3
4
5
6
7
all: CPerlin

CPerlin: main.c perlin.c include/perlin.h
	gcc -lSDL2 -lm main.c perlin.c -o CPerlin

clean:
	rm CPerlin