From: Mart Lubbers Date: Mon, 7 Mar 2016 18:16:59 +0000 (+0100) Subject: skeleton for object centered approach X-Git-Url: https://git.martlubbers.net/?a=commitdiff_plain;h=81190f3341c4f7f12529ffa32f5f6a3ca984da77;p=mc1516pa.git skeleton for object centered approach --- diff --git a/code/.gitignore b/code/.gitignore index bf86cd0..dacd0be 100644 --- a/code/.gitignore +++ b/code/.gitignore @@ -1,2 +1,3 @@ Clean System Files a.out +SokobanObjectwise diff --git a/code/Makefile b/code/Makefile new file mode 100644 index 0000000..5e9ea1b --- /dev/null +++ b/code/Makefile @@ -0,0 +1,10 @@ +CLM:=clm +CLMFLAGS:= + +all: SokobanObjectwise + +%: %.icl + $(CLM) $(CLMFLAGS) $(basename $<) -o $@ + +clean: + $(RM) -rv "Clean System Files" SokobanObjectwise diff --git a/code/SokobanObjectwise.icl b/code/SokobanObjectwise.icl new file mode 100644 index 0000000..f234ae1 --- /dev/null +++ b/code/SokobanObjectwise.icl @@ -0,0 +1,5 @@ +module SokobanObjectwise + +import Sokoban + +Start = "hi"