From a79a52b3cc1e7c24512416dd06facd826d869047 Mon Sep 17 00:00:00 2001 From: Viktor Daniv Date: Wed, 6 Nov 2024 11:11:01 +0000 Subject: [PATCH] Add cv6/Makefile --- cv6/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 cv6/Makefile diff --git a/cv6/Makefile b/cv6/Makefile new file mode 100644 index 0000000..ead529a --- /dev/null +++ b/cv6/Makefile @@ -0,0 +1,12 @@ +CFLAGS= -std=c99 -g -Wall -Werror + +all: station + +%.o: %.c + gcc -c -o $@ $< $(CFLAGS) + +station: main.o a_station.o + gcc $(CFLAGS) main.o a_station.o -o station + +clean: + rm *.o station \ No newline at end of file