Skip to content

Commit 587297a

Browse files
committed
build-runtime.rkt treatment for rest.
1 parent c167727 commit 587297a

File tree

11 files changed

+132
-0
lines changed

11 files changed

+132
-0
lines changed

langs/hoax/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")))

langs/hustle/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")))
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")))

langs/iniquity/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")))

langs/jig/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")))

langs/knock/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")))

langs/loot/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")))

langs/mountebank/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")))

langs/mug/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")))

langs/neerdowell/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)