Skip to content

Commit

Permalink
Merge pull request #2 from pktplumber/rm-default-test-build
Browse files Browse the repository at this point in the history
Only build src by default
  • Loading branch information
pktplumber authored Sep 20, 2024
2 parents a7fa62b + 66a5c6a commit ed83180
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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

0 comments on commit ed83180

Please sign in to comment.