From c9ddb8b3ce5887a9e14db5f3b0959ed1d6fb5970 Mon Sep 17 00:00:00 2001 From: Bruno Raoult Date: Fri, 27 Aug 2021 21:54:27 +0200 Subject: [PATCH] C template GNUmakefile: remove redundant clean in "nowarn" target --- c/templates/GNUmakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/templates/GNUmakefile b/c/templates/GNUmakefile index ae49b88..ec9eac0 100644 --- a/c/templates/GNUmakefile +++ b/c/templates/GNUmakefile @@ -33,7 +33,7 @@ all: CFLAGS+=-DTESTALL all: clean test nowarn: CFLAGS:=$(filter-out -Wextra -Wall,$(CFLAGS)) -nowarn: clean all +nowarn: all debug: CFLAGS+=-DDEBUG debug: all