From b9af0eb339d90d97f24bda71fdaeb482f61f444a Mon Sep 17 00:00:00 2001 From: Yevhen Kozirovskyi Date: Fri, 25 Oct 2024 01:55:24 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20cv4/Makefile?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cv4/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/cv4/Makefile b/cv4/Makefile index e69de29..3c2c463 100644 --- a/cv4/Makefile +++ b/cv4/Makefile @@ -0,0 +1,13 @@ +CFLAGS= -std=c99 -g -Wall + +all: train + +%.o: %.c + gcc -c -o $@ $< $(CFLAGS) + +train: main.o a_train.o + gcc main.o a_train.o -o train + +clean: + rm *.o train +