From 09e96f81122421fcbb1fd482e82e094f31ede69d Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sat, 6 Sep 2025 21:27:17 +0100 Subject: [PATCH] Update Makefile --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 52dbba5..10168e9 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # External variables -CC ?= clang -CXX ?= clang++ -AR ?= ar -BUILD_TYPE ?= Debug -BUILD_DIR ?= libwapp-build/$(PLATFORM)-$(BUILD_TYPE) -INSTALL_PREFIX ?= dist +CC = clang +CXX = clang++ +AR = ar +BUILD_TYPE = Debug +BUILD_DIR = libwapp-build/$(PLATFORM)-$(BUILD_TYPE) +INSTALL_PREFIX = dist # Internal variables override CFLAGS = -Wall -Wextra -Werror -pedantic -Isrc @@ -87,7 +87,7 @@ core: LIB_SRC = src/core/wapp_core.c core: INCLUDES = common core primitives core: install -primitives: LIB_SRC = src/core/wapp_primitives.c +primitives: LIB_SRC = src/primitives/wapp_primitives.c primitives: INCLUDES = common primitives primitives: install