From 81190f3341c4f7f12529ffa32f5f6a3ca984da77 Mon Sep 17 00:00:00 2001 From: Mart Lubbers Date: Mon, 7 Mar 2016 19:16:59 +0100 Subject: [PATCH] skeleton for object centered approach --- code/.gitignore | 1 + code/Makefile | 10 ++++++++++ code/SokobanObjectwise.icl | 5 +++++ 3 files changed, 16 insertions(+) create mode 100644 code/Makefile create mode 100644 code/SokobanObjectwise.icl 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" -- 2.20.1