aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-24 15:39:22 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-24 15:39:22 +0100
commitc6f87a62b31325e91bc8c847de9b20647a9b1cd8 (patch)
treeaacf869e3c22f8937637c3e7aa15794b2b4680f0 /Makefile
parentc924493670af7285683295d7ab38991e018b65cf (diff)
downloadfractol-c6f87a62b31325e91bc8c847de9b20647a9b1cd8.tar.gz
fractol-c6f87a62b31325e91bc8c847de9b20647a9b1cd8.tar.bz2
fractol-c6f87a62b31325e91bc8c847de9b20647a9b1cd8.zip
Added julia fractal and mouse modify julia constant
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7c87fce..0c2718d 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 12:05:19 by cacharle ### ########.fr #
+# Updated: 2020/02/24 15:22:40 by cacharle ### ########.fr #
# #
# **************************************************************************** #
@@ -35,7 +35,8 @@ SRC_FILES = main.c \
event.c \
state.c \
helper.c \
- fractals/mandelbrot.c
+ fractals/mandelbrot.c \
+ fractals/julia.c
SRC = $(addprefix $(SRC_DIR)/,$(SRC_FILES))
OBJ = $(SRC:$(SRC_DIR)/%.c=$(OBJ_DIR)/%.o)
@@ -51,7 +52,7 @@ prebuild:
$(NAME): $(OBJ)
$(CC) -o $@ $^ $(LDFLAGS)
-$(OBJ_DIR)/%.o: $(SRC_DIR)/%.c
+$(OBJ_DIR)/%.o: $(SRC_DIR)/%.c
$(CC) $(CCFLAGS) -c -o $@ $<
clean: libft_clean minilibx_clean