From 023bbf7315f2d9aa659ccdc049921ff9952ee0e2 Mon Sep 17 00:00:00 2001 From: snsd0805 Date: Tue, 30 May 2023 03:12:41 +0800 Subject: [PATCH] fix: Makefile dependence --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 1e5f3c8..5f679e7 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ all: a.out -a.out: main.c +a.out: main.c enviroment.c enviroment.h q-learning.c q-learning.h constant.h gcc main.c enviroment.c q-learning.c -lm run: ./a.out