This repository has been archived on 2022-10-18. You can view files and clone it, but cannot push or open issues or pull requests.
HPC/Project2/Project2-code/mandel/makefile

9 lines
110 B
Makefile

all: mandel_seq
mandel_seq: mandel_seq.c pngwriter.c
gcc -o $@ -I. -O3 $^ -lpng
clean:
rm -rf mandel_seq