summaryrefslogtreecommitdiff
path: root/Makefile
blob: 23902ff822f8898327ae18ff97d22003e59d9af9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
all: pd_server tit4tat prisoners_dilemma

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

pd_server: pd_server.c
	gcc -o $@ $<

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

clean:
	rm -f tit4tat prisoners_dilemma