This commit is contained in:
Danny Yoo 2011-08-29 15:54:36 -04:00
parent 760ece253b
commit b8f5b5d0f1
2 changed files with 7 additions and 4 deletions

View File

@ -4,7 +4,8 @@
all: planet-link launcher
launcher: whalesong
launcher:
raco make -v --disable-inline whalesong.rkt
racket make-launcher.rkt
whalesong:

View File

@ -1,11 +1,13 @@
#lang s-exp "kernel.rkt"
(require "base.rkt"
"traced-app.rkt")
"private/traced-app.rkt")
;; Programs written in Whalesong will have tracing enabled by default.
;; If you don't want this, write in whalesong/base instead.
(provide (except-out (all-from-out "base.rkt")
#%app)
(rename-out [traced-app #%app]))
;;#%app
)
;;(rename-out [traced-app #%app])
)