From 7a2cec3945ba700c674f816d47f49060975b854d Mon Sep 17 00:00:00 2001 From: Joel Grunbaum <joelgrun@gmail.com> Date: Fri, 23 Oct 2020 05:52:50 +0000 Subject: [PATCH] renamed shadowed variable --- Makefile | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 548e7b4..420b74c 100644 --- a/Makefile +++ b/Makefile @@ -12,10 +12,10 @@ default: dnscomp %.o: %c $(DEPS) - $(CC) $(CFLAGS) -c -o $@ $< + $(CC) -c -o $@ $< $(CFLAGS) dnscomp: $(_OBJ) - $(CC) $(CFLAGS) -o $@ $^ + $(CC) -o $@ $^ $(CFLAGS) .PHONY: clean clean: -- Gitblit v1.10.0