Skip to content

Commit c167727

Browse files
committed
build-runtime.rkt for Fraud.
1 parent a6ce5ef commit c167727

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

langs/fraud/build-runtime.rkt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#lang racket
2+
(provide runtime-path)
3+
4+
(require racket/runtime-path)
5+
(define-runtime-path here ".")
6+
7+
(system (string-append "make -C "
8+
(path->string (normalize-path here))
9+
" runtime.o"))
10+
11+
(define runtime-path
12+
(normalize-path (build-path here "runtime.o")))

0 commit comments

Comments
 (0)