From 178b2f48606e21abe8047de7737b58cbc3301a55 Mon Sep 17 00:00:00 2001 From: Bob Polis Date: Tue, 31 Dec 2024 11:07:27 +0100 Subject: [PATCH] Fix library header generation Prevent precomp.hpp to be included in header file list. --- tpl/Makefile.unified | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tpl/Makefile.unified b/tpl/Makefile.unified index fd9209b..edb6384 100644 --- a/tpl/Makefile.unified +++ b/tpl/Makefile.unified @@ -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