From c7bc1ffb63c61ffef8bbb5023c01802308eab42b Mon Sep 17 00:00:00 2001 From: Jan Klemkow Date: Fri, 9 Nov 2012 01:46:26 +0100 Subject: Add makefile for BSD make. --- BSDmakefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 BSDmakefile (limited to 'BSDmakefile') diff --git a/BSDmakefile b/BSDmakefile new file mode 100644 index 0000000..0d6e469 --- /dev/null +++ b/BSDmakefile @@ -0,0 +1,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 -- cgit