Ignore compiled/ directories; minimart/main.rkt; Makefile

This commit is contained in:
Tony Garnock-Jones 2013-10-28 10:33:04 +00:00
parent 9c08cd1723
commit fe7cff36cb
3 changed files with 25 additions and 0 deletions

1
.gitignore vendored
View File

@ -1 +1,2 @@
scratch/
compiled/

16
Makefile Normal file
View File

@ -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)

8
minimart/main.rkt Normal file
View File

@ -0,0 +1,8 @@
#lang racket/base
(require "core.rkt")
(require "ground.rkt")
(provide (all-from-out "core.rkt")
(all-from-out "ground.rkt"))