From 80142e97b3c6112e9192fa4bc3f10ac901b73514 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Tue, 10 Jun 2025 14:19:27 +0200 Subject: [PATCH] Fix automatic header by excluding src/precomp.hpp --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index fd9209b..51c1624 100644 --- a/Makefile +++ b/Makefile @@ -53,7 +53,7 @@ BIN := $(OUTDIR)/$(PROJ) SRCS += $(notdir $(wildcard src/*.cpp)) OBJS := $(addprefix $(BUILDDIR)/, $(SRCS:.cpp=.o)) DEPS := $(addprefix $(BUILDDIR)/, $(SRCS:.cpp=.dep)) -HDRS ?= $(wildcard src/*.hpp) +HDRS ?= $(filter-out src/precomp.hpp, $(wildcard src/*.hpp)) MANS := $(addprefix $(PREFIX)/, $(wildcard man/man*/*)) # if project supports plugins, link to libdl where needed