From 2e494a09b3d81e78b874b6315e28e728f9c159e2 Mon Sep 17 00:00:00 2001 From: augustin64 Date: Wed, 1 Feb 2023 11:50:35 +0100 Subject: [PATCH] Update Makefile --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index f80c004..e0b497e 100644 --- a/Makefile +++ b/Makefile @@ -89,7 +89,7 @@ $(BUILDDIR)/cnn-main: $(CNN_SRCDIR)/main.c \ $(BUILDDIR)/colors.o \ $(BUILDDIR)/mnist.o \ $(BUILDDIR)/utils.o - $(CC) $(LD_CFLAGS) $^ -o $@ $(CFLAGS) + $(CC) $^ -o $@ $(CFLAGS) $(LD_CFLAGS) ifdef NVCC_INSTALLED $(BUILDDIR)/cnn-main-cuda: $(BUILDDIR)/cnn_main.cuda.o \