From: Lukáš Jiřiště Date: Sun, 25 Jan 2026 15:33:50 +0000 (+0100) Subject: Forbid implicit MAKE rules X-Git-Url: https://git.ljiriste.work/?a=commitdiff_plain;p=FET_sim.git Forbid implicit MAKE rules They overshadowed my pattern rules (as opposed to make 4.3) which then failed and the project failed to build. --- diff --git a/Makefile b/Makefile index d6dd711..7a35b33 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,5 @@ +MAKEFLAGS += --no-builtin-rules + CC := gcc CFLAGS := -std=c99 -Wall -Wextra -Werror -Wpedantic LDFLAGS := -L Libft -lft -lncurses