aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/makefile
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2024-04-20 02:43:17 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2024-04-20 02:43:17 -0400
commit5cba5bc63de403c779fd4fa762216280d4396444 (patch)
treef1c2da748ab8f5bd88b40d09cd617838257dfb23 /makefile
parent74c1057a1cea4ec5fc3a8f338b24af553cc83399 (diff)
reorganized src files
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 83ba870..47967f4 100644
--- a/makefile
+++ b/makefile
@@ -7,7 +7,7 @@ SRC_DIR := src
BUILD_DIR := build
OBJ_DIR := $(BUILD_DIR)/objects
-TARGET := serial-fractal
+TARGET := fractals
SRCS := $(wildcard $(SRC_DIR)/*.c)
OBJS := $(patsubst $(SRC_DIR)/%.c, $(OBJ_DIR)/%.o, $(SRCS))
@@ -20,7 +20,7 @@ all: $(BUILD_DIR)/$(TARGET)
# Programs #
##############
-build/mandelbrot: $(OBJ_DIR)/serial-fractal.o $(OBJ_DIR)/grids.o
+build/fractals: $(OBJ_DIR)/fractals.o $(OBJ_DIR)/serial-fractals.o $(OBJ_DIR)/grids.o
$(CC) $(CFLAGS) $^ -o $@ $(LDFLAGS)
$(OBJ_DIR)/%.o: $(SRC_DIR)/%.c | $(OBJ_DIR)