diff options
author | Jan Klemkow <j.klemkow@wemelug.de> | 2012-11-12 01:06:21 +0100 |
---|---|---|
committer | Jan Klemkow <j.klemkow@wemelug.de> | 2012-11-12 01:06:21 +0100 |
commit | 00c6159e0f421c8307fc67973938f64ac405ec79 (patch) | |
tree | c5c912b1908816fd019a4ba7394b2fc1bde8e425 /BSDmakefile | |
parent | c71183f2277cf6465af9a989f36d24a3bb6c18cf (diff) | |
download | wbs-00c6159e0f421c8307fc67973938f64ac405ec79.tar.gz wbs-00c6159e0f421c8307fc67973938f64ac405ec79.tar.bz2 wbs-00c6159e0f421c8307fc67973938f64ac405ec79.zip |
Add c implementation for algorithm battle with working payment.
Diffstat (limited to 'BSDmakefile')
-rw-r--r-- | BSDmakefile | 7 |
1 files changed, 5 insertions, 2 deletions
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 |