6 lines
144 B
Makefile
6 lines
144 B
Makefile
all: a.out
|
|
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
|