Last change
on this file since 25842 was
25842,
checked in by felix winkelmann, 9 years ago
|
added kitaaba (work in progress, far from finished)
|
File size:
526 bytes
|
Line | |
---|
1 | ;;;; ktab.setup -*- Scheme -*- |
---|
2 | |
---|
3 | |
---|
4 | (define libs |
---|
5 | (append |
---|
6 | '(-lSDL -lSDL_ttf) |
---|
7 | (cond-expand |
---|
8 | (windows '(-lgdi32 -luser32 -lfreetype)) |
---|
9 | (else '())))) |
---|
10 | |
---|
11 | |
---|
12 | (compile ucs-literal.scm -Js -O3 -d0) |
---|
13 | (compile -s -O3 -d0 ucs-literal.import.scm) |
---|
14 | |
---|
15 | (compile ktab.scm -X ucs-literal -O3 -d1 -sJ ,@libs) |
---|
16 | (compile ktab.import.scm -O3 -d0 -s) |
---|
17 | |
---|
18 | (install-extension |
---|
19 | 'ucs-literal |
---|
20 | '("ucs-literal.so" "ucs-literal.import.so") |
---|
21 | '((version 0.1) |
---|
22 | (import-only))) |
---|
23 | |
---|
24 | (install-extension |
---|
25 | 'ktab |
---|
26 | '("ktab.so" "ktab.import.so") |
---|
27 | '((version 0.1))) |
---|
Note: See
TracBrowser
for help on using the repository browser.