From 62a16292ec0d41dfd121ebea93c3b18a533c0184 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Sun, 19 May 2024 04:36:33 +0400 Subject: [PATCH] main.c -> kwh-cost.c --- Makefile | 2 +- main.c => kwh-cost.c | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename main.c => kwh-cost.c (100%) diff --git a/Makefile b/Makefile index 15cd6c5..e8559da 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ CFLAGS=--std=c99 -O3 -Wall -Werror -Wextra -pedantic .PHONY: clean install uninstall test -${TARGET}: main.c +${TARGET}: ${TARGET}.c ${CC} ${CFLAGS} ${LDFLAGS} $< -o $@ clean: diff --git a/main.c b/kwh-cost.c similarity index 100% rename from main.c rename to kwh-cost.c