diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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) |