From 2a26c1506192468be6c4cd06465bee861d87db51 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Mon, 27 Jan 2025 01:20:19 +0100 Subject: elf: simple elf-parser for dynamic symbols --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 0cf7eb6..9c1941c 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ LDFLAGS = $(SANITIZER) # -- RULES --------------------------------------------------------------------- -default: lint build $(BINS) +default: build lint $(BINS) run: $(RUNS) @@ -33,6 +33,7 @@ build/%.o: test/%.cc build: mkdir -p build + make -C test/elf_parser lint: clang-format --dry-run -Werror $(shell find -name '*.cc' -o -name '*.h') @@ -41,6 +42,7 @@ lint: clean: $(RM) -r build $(RM) compile_commands.json events.json + make -C test/elf_parser clean # Since DEPS files contain rules, include at the end. -include $(DEPS) -- cgit v1.2.3