From 254ef3236e3405a0a51993d0728ade3fcc0fe47b Mon Sep 17 00:00:00 2001 From: louib Date: Sat, 28 Dec 2019 12:28:19 -0500 Subject: [PATCH] Rename sources variable in makefile. --- Makefile.am | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.am b/Makefile.am index f1896c0..938dffa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,9 +1,9 @@ AUTOMAKE_OPTIONS = foreign SUBDIRS = src man -nwipe_SOURCES = src/*.c src/*.h +NWIPESOURCES = src/*.c src/*.h format: - clang-format -i -style=file $(nwipe_SOURCES) + clang-format -i -style=file $(NWIPESOURCES) check-format: - clang-format -i -style=file $(nwipe_SOURCES) && git diff-index --quiet HEAD + clang-format -i -style=file $(NWIPESOURCES) && git diff-index --quiet HEAD