summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9f8ad8643648f7f4aafb37f1180dadf20716381c (plain)
1
2
3
4
5
6
7
8
9
10
all: tit4tat prisoners_dilemma

tit4tat: tit4tat.c
	gcc -std=c99 -Wall -o $@ $<

prisoners_dilemma: prisoners_dilemma.pl
	gplc -o $@ $<

clean:
	rm -f tit4tat prisoners_dilemma