From fe7cff36cba507182577a93df88495065551fb8a Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Mon, 28 Oct 2013 10:33:04 +0000 Subject: [PATCH] Ignore compiled/ directories; minimart/main.rkt; Makefile --- .gitignore | 1 + Makefile | 16 ++++++++++++++++ minimart/main.rkt | 8 ++++++++ 3 files changed, 25 insertions(+) create mode 100644 Makefile create mode 100644 minimart/main.rkt diff --git a/.gitignore b/.gitignore index e8ee010..372be09 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ scratch/ +compiled/ diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ab8cd9a --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +PACKAGENAME=minimart +COLLECTS=minimart + +all: setup + +clean: + find . -name compiled -type d | xargs rm -rf + +setup: + raco setup $(COLLECTS) + +link: + raco pkg install --link -n $(PACKAGENAME) $$(pwd) + +unlink: + raco pkg remove $(PACKAGENAME) diff --git a/minimart/main.rkt b/minimart/main.rkt new file mode 100644 index 0000000..f98df88 --- /dev/null +++ b/minimart/main.rkt @@ -0,0 +1,8 @@ +#lang racket/base + +(require "core.rkt") +(require "ground.rkt") + +(provide (all-from-out "core.rkt") + (all-from-out "ground.rkt")) +