From 66a5c6a458e22052e2ff0da01bd36c6884648411 Mon Sep 17 00:00:00 2001 From: JKSMTH8 Date: Thu, 19 Sep 2024 20:29:27 -0400 Subject: [PATCH] Only build src by default --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index bfd526f9..bf560f35 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ cxxstd=c++11 BUILD=build -SOURCES=src/pugixml.cpp $(filter-out tests/fuzz_%,$(wildcard tests/*.cpp)) +SOURCES=src/pugixml.cpp LIBRARY=$(BUILD)/libpugixml.a VERSION=$(shell sed -n 's/.*version \(.*\).*/\1/p' src/pugiconfig.hpp) @@ -97,4 +97,4 @@ $(BUILD)/%.o: % docs/%.html: docs/%.adoc $$(shell sed -n 's/include\:\:\(.*\)\[.*/docs\/\1/p' docs/%.adoc) asciidoctor -b html5 -a version=$(VERSION) $< -o $@ -.PHONY: all test clean release .FORCE +.PHONY: all test clean release docs .FORCE