For our course Systèmes Informatiques I, we implement a program that generates a BMP file as output from a list of fractals as input
How to compile?
$ make
How to execute?
$ ./main [options] file1 file2 fileN fileOut
Options:
-dbuilds a BMP for each computed fractal--maxthreads nnumber of maximal used computations threads
How to clean?
$ make clean
How to make it even cleaner?
$ make mrproper
Files without a comment have a descriptive name to understand what they contain :
./libfractal/fractal.c./libfractal/fractal.h./libfractal/Makefile./libfractal/tools.ctools to build a BMP file from afractal_t./LICENSE.md./main.c./Makefile./README.md./test/contains unit tests made with CUnit