From 43a01772fa373eeb7338302e818509e59228651c Mon Sep 17 00:00:00 2001 From: Yurii Yakovenko Date: Mon, 28 Oct 2024 17:05:16 +0000 Subject: [PATCH] Update cv6/Makefile --- cv6/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cv6/Makefile b/cv6/Makefile index 68db964..8cec7f4 100644 --- a/cv6/Makefile +++ b/cv6/Makefile @@ -3,11 +3,11 @@ CFLAGS= -std=c99 -g -Wall -Werror all: station %.o: %.c - gcc -c -o $@ $< $(CFLAGS) + gcc -c -o $@ $< $(CFLAGS) station: main.o a_station.o - gcc $(CFLAGS) main.o a_station.o -o station + gcc $(CFLAGS) main.o a_station.o -o station clean: - rm *.o station + rm *.o station