diff --git a/Makefile b/Makefile index b49334e..404b1bb 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,8 @@ all: planet-link launcher -launcher: whalesong +launcher: + raco make -v --disable-inline whalesong.rkt racket make-launcher.rkt whalesong: diff --git a/lang/whalesong.rkt b/lang/whalesong.rkt index 81638b1..0ff23f3 100644 --- a/lang/whalesong.rkt +++ b/lang/whalesong.rkt @@ -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])) \ No newline at end of file + ;;#%app + ) + ;;(rename-out [traced-app #%app]) + ) \ No newline at end of file