From 00c6159e0f421c8307fc67973938f64ac405ec79 Mon Sep 17 00:00:00 2001 From: Jan Klemkow Date: Mon, 12 Nov 2012 01:06:21 +0100 Subject: Add c implementation for algorithm battle with working payment. --- BSDmakefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'BSDmakefile') diff --git a/BSDmakefile b/BSDmakefile index 0d6e469..650d0cf 100644 --- a/BSDmakefile +++ b/BSDmakefile @@ -4,10 +4,13 @@ tit4tat: tit4tat.c gcc -std=c99 -Wall -o $@ $< pd_server: pd_server.c - gcc -o $@ $< + gcc -o $@ $> prisoners_dilemma: prisoners_dilemma.pl gplc -o $@ $> +battle: battle.c pay.pl + gplc $> + clean: - rm -f tit4tat prisoners_dilemma + rm -f tit4tat prisoners_dilemma battle -- cgit