aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 6cfd45df104f90f90a6351f540ab9486d7c76213 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: all

LIST:=valueIterationAgents.py qlearningAgents.py analysis.py
DSTFILES:=$(addprefix build/, $(LIST))

all: $(DSTFILES)

build:
	mkdir -p ./build

build/%:src/% build
	cp -f $< $@