From 3ed7cbff3cea8d4ec06a495a154e11912d713c10 Mon Sep 17 00:00:00 2001 From: Stefan Date: Fri, 24 May 2024 11:29:17 +0200 Subject: [PATCH] Shorter makefile --- tektests/makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tektests/makefile b/tektests/makefile index 60a0b64..50a90f3 100644 --- a/tektests/makefile +++ b/tektests/makefile @@ -1,7 +1,8 @@ +CC = gcc +LDFLAGS = -lm + all: incremental circles incremental: incremental.c - gcc -o incremental incremental.c -lm circles: circles.c - gcc -o circles circles.c -lm