From ec36801732fb16399ee80cf62e60f8d1fc41029f Mon Sep 17 00:00:00 2001 From: augustin64 Date: Sun, 19 Feb 2023 10:21:26 +0100 Subject: [PATCH] Fix `make webserver` --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0d2e36d..91a20f6 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ BUILDDIR := ./build SRCDIR := ./src -CACHE_DIR := ./cache +CACHE_DIR := ./.cache NVCC := nvcc CUDA_INCLUDE := /opt/cuda/include # Default installation path for ArchLinux, may be different @@ -197,7 +197,7 @@ endif # # Utils # -webserver: $(CACHE_DIR)/mnist-reseau.bin +webserver: $(CACHE_DIR)/mnist-reseau-fully-connected.bin $(CACHE_DIR)/mnist-reseau-cnn.bin FLASK_APP="src/webserver/app.py" flask run $(CACHE_DIR)/mnist-reseau-fully-connected.bin: $(BUILDDIR)/mnist-main