aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-24 16:14:24 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-24 16:14:24 +0100
commit1987bca74aec7b8937e6cc69ebf9c584b0467bad (patch)
treeaf79fd5153d9605488f6b0c7a3de988a09994f5e /Makefile
parentc6f87a62b31325e91bc8c847de9b20647a9b1cd8 (diff)
downloadfractol-1987bca74aec7b8937e6cc69ebf9c584b0467bad.tar.gz
fractol-1987bca74aec7b8937e6cc69ebf9c584b0467bad.tar.bz2
fractol-1987bca74aec7b8937e6cc69ebf9c584b0467bad.zip
Added tricorn fractal
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0c2718d..42feea4 100644
--- a/Makefile
+++ b/Makefile
@@ -6,7 +6,7 @@
# By: cacharle <marvin@42.fr> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/02/24 09:19:49 by cacharle #+# #+# #
-# Updated: 2020/02/24 15:22:40 by cacharle ### ########.fr #
+# Updated: 2020/02/24 16:09:04 by cacharle ### ########.fr #
# #
# **************************************************************************** #
@@ -36,7 +36,8 @@ SRC_FILES = main.c \
state.c \
helper.c \
fractals/mandelbrot.c \
- fractals/julia.c
+ fractals/julia.c \
+ fractals/tricorn.c
SRC = $(addprefix $(SRC_DIR)/,$(SRC_FILES))
OBJ = $(SRC:$(SRC_DIR)/%.c=$(OBJ_DIR)/%.o)