faca76c78d3a70db933a20e4770536224a3a699a
[mes.git] / make.scm
1 #! /bin/sh
2 # -*- scheme -*-
3 exec ${GUILE-guile} --no-auto-compile -L . -L guile -C . -C guile -s "$0" ${1+"$@"}
4 !#
5
6 (use-modules (srfi srfi-26)
7              (guix shell-utils))
8
9 ;; FIXME: .go dependencies
10 ;; workaround: always update .go before calculating hashes
11 ;;(use-modules ((mes make) #:select (sytem**)))
12 (define %scm-files
13   '("guix/make.scm"
14     "guix/records.scm"
15     "guix/shell-utils.scm"
16     "language/c99/compiler.scm"
17     "language/c99/info.scm"
18     "mes/as-i386.scm"
19     "mes/as.scm"
20     "mes/bytevectors.scm"
21     "mes/elf.scm"
22     "mes/M1.scm"))
23 (define %go-files (map (compose (cut string-append <> ".go") (cut string-drop-right <> 4)) %scm-files))
24 (setenv "srcdir" ".")
25 (setenv "host" %host-type)
26 (with-directory-excursion "guile"
27   (apply system* `("guile"
28                    "--no-auto-compile"
29                    "-L" "."
30                    "-C" "."
31                    "-s"
32                    "../build-aux/compile-all.scm"
33                    ,@%scm-files)))
34
35 (use-modules (srfi srfi-1)
36              (ice-9 curried-definitions)
37              (ice-9 match)
38              (guix make))
39
40 (add-target (bin.mescc "stage0/exit-42.c" #:libc #f))
41 (add-target (check "stage0/exit-42.0-guile" #:signal 11))  ; FIXME: segfault
42
43 (add-target (cpp.mescc "mlibc/mini-libc-mes.c"))
44 (add-target (compile.mescc "mlibc/mini-libc-mes.c"))
45
46 (add-target (bin.mescc "stage0/exit-42.c" #:libc mini-libc-mes.E))
47 (add-target (check "stage0/exit-42.mini-guile" #:exit 42))
48
49 (add-target (cpp.mescc "mlibc/libc-mes.c"))
50 (add-target (compile.mescc "mlibc/libc-mes.c"))
51
52 (add-target (bin.mescc "stage0/exit-42.c"))
53 (add-target (check "stage0/exit-42.guile" #:exit 42))
54
55 (define* (add-scaffold-test name #:key (exit 0) (libc libc-mes.E))
56   (add-target (bin.gcc (string-append "scaffold/tests/" name ".c") #:libc #f))
57   (add-target (check (string-append "scaffold/tests/" name ".mlibc-gcc") #:exit exit))
58
59   (add-target (bin.mescc (string-append "scaffold/tests/" name ".c") #:libc libc))
60   (add-target (check (string-append "scaffold/tests/" name "." (cond ((not libc) "0-")
61                                                                      ((eq? libc mini-libc-mes.E) "mini-")
62                                                                      (else "")) "guile") #:exit exit)))
63
64
65 (add-scaffold-test "t" #:libc mini-libc-mes.E)
66
67 ;; tests/00: exit, functions without libc
68 (add-scaffold-test "00-exit-0" #:libc #f)
69 (add-scaffold-test "01-return-0" #:libc #f)
70 (add-scaffold-test "02-return-1" #:libc #f #:exit 1)
71 (add-scaffold-test "03-call" #:libc #f)
72 (add-scaffold-test "04-call-0" #:libc #f)
73 (add-scaffold-test "05-call-1" #:libc #f #:exit 1)
74 (add-scaffold-test "06-call-!1" #:libc #f)
75
76 (add-target (group "check-scaffold-tests/0" #:dependencies (filter (target-prefix? "check-scaffold/tests/0") %targets)))
77
78 ;; tests/10: control without libc
79 (for-each
80  (cut add-scaffold-test <> #:libc #f)
81  '("10-if-0"
82    "11-if-1"
83    "12-if-=="
84    "13-if-!="
85    "14-if-goto"
86    "15-if-!f"
87    "16-if-t"))
88
89 (add-target (group "check-scaffold-tests/1" #:dependencies (filter (target-prefix? "check-scaffold/tests/1") %targets)))
90
91 ;; tests/20: loop without libc
92 (for-each
93  (cut add-scaffold-test <> #:libc #f)
94  '("20-while"
95    "21-char[]"
96    "22-while-char[]"
97    "23-pointer"))
98
99 (add-target (group "check-scaffold-tests/2" #:dependencies (filter (target-prefix? "check-scaffold/tests/2") %targets)))
100
101 ;; tests/30: call, compare: mini-libc-mes.c
102 (for-each
103  (cut add-scaffold-test <> #:libc mini-libc-mes.E)
104  '("30-strlen"
105    "31-eputs"
106    "32-compare"
107    "33-and-or"
108    "34-pre-post"
109    "35-compare-char"
110    "36-compare-arithmetic"
111    "37-compare-assign"
112    "38-compare-call"))
113
114 (add-target (group "check-scaffold-tests/3" #:dependencies (filter (target-prefix? "check-scaffold/tests/3") %targets)))
115
116 ;; tests/40: control: mini-libc-mes.c
117 (for-each
118  (cut add-scaffold-test <> #:libc mini-libc-mes.E)
119  '("40-if-else"
120    "41-?"
121    "42-goto-label"
122    "43-for-do-while"
123    "44-switch"
124    "45-void-call"))
125
126 (add-target (group "check-scaffold-tests/4" #:dependencies (filter (target-prefix? "check-scaffold/tests/4") %targets)))
127
128 ;; tests/50: libc-mes.c
129 (for-each
130  add-scaffold-test
131  '("50-assert"
132    "51-strcmp"
133    "52-itoa"
134    "54-argv"))
135
136 (add-target (group "check-scaffold-tests/5" #:dependencies (filter (target-prefix? "check-scaffold/tests/5") %targets)))
137
138 ;; tests/60: building up to scaffold/m.c, scaffold/micro-mes.c
139 (for-each
140  add-scaffold-test
141  '("60-math"
142    "61-array"
143    "63-struct-cell"
144    "64-make-cell"
145    "65-read"))
146
147 (add-target (group "check-scaffold-tests/6" #:dependencies (filter (target-prefix? "check-scaffold/tests/6") %targets)))
148
149 ;; tests/70: and beyond src/mes.c -- building up to 8cc.c, pcc.c, tcc.c, libguile/eval.c
150 (for-each
151  add-scaffold-test
152  '("70-printf"
153    "71-struct-array"))
154
155 (add-target (group "check-scaffold-tests/7" #:dependencies (filter (target-prefix? "check-scaffold/tests/7") %targets)))
156
157 (add-target (group "check-scaffold-tests" #:dependencies (filter (target-prefix? "check-scaffold/tests") %targets)))
158
159
160 (define* (add-tcc-test name)
161   (add-target (bin.gcc (string-append "scaffold/tinycc/" name ".c") #:libc #f #:includes '("scaffold/tinycc")))
162   (add-target (check (string-append "scaffold/tinycc/" name ".mlibc-gcc") #:baseline (string-append "scaffold/tinycc/" name ".expect")))
163
164   (add-target (bin.mescc (string-append "scaffold/tinycc/" name ".c") #:includes '("scaffold/tinycc")))
165   (add-target (check (string-append "scaffold/tinycc/" name ".guile") #:baseline (string-append "scaffold/tinycc/" name ".expect"))))
166 (map
167  add-tcc-test
168  '("00_assignment"
169    "01_comment"
170    "02_printf"
171    "03_struct"
172    "04_for"
173    "05_array"
174    "06_case"
175    "07_function"
176    "08_while"
177    "09_do_while"
178
179    "10_pointer"
180    "11_precedence"
181    "12_hashdefine"
182    "13_integer_literals"
183    "14_if"
184    "15_recursion"
185    "16_nesting"
186    "17_enum"
187    "18_include"
188    "19_pointer_arithmetic"
189
190    "20_pointer_comparison"
191    "21_char_array"
192    ;;"22_floating_point"       ; float
193    ;;"23_type_coercion"        ; float
194    ;;"24_math_library"         ; float
195    "25_quicksort"
196    ;;"27_sizeof"               ; float
197    ;;"28_strings"              ; TODO: strncpy strchr strrchr memset memcpy memcmp
198    "29_array_address"
199
200    ;;"30_hanoi"                ; fails with GCC
201    "31_args"
202    ;;"32_led"                  ; unsupported: (decl (decl-spec-list (stor-spec (static)) (type-spec (fixed-type "int"))) (init-declr-list (init-declr (array-of (ident "d") (p-expr (fixed "32"))))))
203    ;;"34_array_assignment"     ; fails with GCC
204    "33_ternary_op"
205    "35_sizeof"
206    ;;"36_array_initialisers"   ; unspported: (decl (decl-spec-list (type-spec (fixed-type "int"))) (init-declr-list (init-declr (array-of (ident "Array") (p-expr (fixed "10"))) (initzer (initzer-list (initzer (p-expr (fixed "12"))) (initzer (p-expr (fixed "34"))) (initzer (p-expr (fixed "56"))) (initzer (p-expr (fixed "78"))) (initzer (p-expr (fixed "90"))) (initzer (p-expr (fixed "123"))) (initzer (p-expr (fixed "456"))) (initzer (p-expr (fixed "789"))) (initzer (p-expr (fixed "8642"))) (initzer (p-expr (fixed "9753"))))))))
207    ;; "37_sprintf"             ; integer formatting unsupported
208    ;;"38_multiple_array_index" ; unspported: (decl (decl-spec-list (type-spec (fixed-type "int"))) (init-declr-list (init-declr (array-of (array-of (ident "a") (p-expr (fixed "4"))) (p-expr (fixed "4"))))))
209    ;;"39_typedef"              ; unsupported: (decl (decl-spec-list (stor-spec (typedef)) (type-spec (typename "MyFunStruct"))) (init-declr-list (init-declr (ptr-declr (pointer) (ident "MoreFunThanEver")))))
210
211    ;;"40_stdio"                ; f* functions
212    "41_hashif"
213    ;;"42_function_pointer"     ; f* functions
214    "43_void_param"
215    "44_scoped_declarations"
216    ;; "45_empty_for"           ; unsupported
217    ;;"46_grep"                 ; f* functions
218    "47_switch_return"
219    "48_nested_break"
220    ;;"49_bracket_evaluation"   ; float
221
222    "50_logical_second_arg"
223    ;;"51_static"               ; unsupported: (decl (decl-spec-list (stor-spec (static)) (type-spec (fixed-type "int"))) (init-declr-list (init-declr (ident "fred") (initzer (p-expr (fixed "1234"))))))
224    ;;"52_unnamed_enum"         ; unsupported: (decl (decl-spec-list (stor-spec (typedef)) (type-spec (enum-def (enum-def-list (enum-defn (ident "e")) (enum-defn (ident "f")) (enum-defn (ident "g")))))) (init-declr-list (init-declr (ident "h"))))
225    "54_goto"
226    ;;"55_lshift_type"          ; unsigned
227    ))
228
229 (add-target (group "check-scaffold-tinycc" #:dependencies (filter (target-prefix? "check-scaffold/tinycc") %targets)))
230
231 ;;(add-target (group "check-scaffold" #:dependencies (filter (target-prefix? "check-scaffold") %targets)))
232
233 (add-target (bin.gcc "scaffold/hello.c"))
234 (add-target (check "scaffold/hello.gcc" #:exit 42))
235
236 (add-target (bin.gcc "scaffold/hello.c" #:libc #f))
237 (add-target (check "scaffold/hello.mlibc-gcc" #:exit 42))
238
239 (add-target (bin.mescc "scaffold/hello.c" #:libc mini-libc-mes.E))
240 (add-target (check "scaffold/hello.mini-guile" #:exit 42))
241
242 (add-target (bin.mescc "scaffold/hello.c"))
243 (add-target (check "scaffold/hello.guile" #:exit 42))
244
245
246 (add-target (bin.gcc "scaffold/m.c"))
247 (add-target (check "scaffold/m.gcc" #:exit 255))
248
249 (add-target (bin.gcc "scaffold/m.c" #:libc #f))
250 (add-target (check "scaffold/m.mlibc-gcc" #:exit 255))
251
252 (add-target (bin.mescc "scaffold/m.c"))
253 (add-target (check "scaffold/m.guile" #:exit 255))
254
255 (add-target (bin.gcc "scaffold/micro-mes.c" #:libc #f))
256 (add-target (check "scaffold/micro-mes.mlibc-gcc" #:exit 6)) ; arg1 arg2 arg3 arg4 arg5
257
258 (add-target (bin.mescc "scaffold/micro-mes.c"))
259 (add-target (check "scaffold/micro-mes.guile" #:exit 6)) ; arg1 arg2 arg3 arg4 arg5
260
261 (add-target (group "check-scaffold" #:dependencies (filter (target-prefix? "check-scaffold") %targets)))
262
263 (define snarf-bases
264   '("gc" "lib" "math" "mes" "posix" "reader" "vector"))
265
266 (define bla
267   `(,@(map (cut string-append "src/" <> ".c") snarf-bases)
268     ,@(map (cut string-append "src/" <> ".mes.h") snarf-bases)
269     ,@(map (cut string-append "src/" <> ".mes.i") snarf-bases)
270     ,@(map (cut string-append "src/" <> ".mes.environment.i") snarf-bases)))
271
272 (define gcc-snarf-targets
273   (list
274    (add-target (snarf "src/gc.c" #:mes? #f))
275    (add-target (snarf "src/lib.c" #:mes? #f))
276    (add-target (snarf "src/math.c" #:mes? #f))
277    (add-target (snarf "src/mes.c" #:mes? #f))
278    (add-target (snarf "src/posix.c" #:mes? #f))
279    (add-target (snarf "src/reader.c" #:mes? #f))
280    (add-target (snarf "src/vector.c" #:mes? #f))))
281
282 (define mes-snarf-targets
283   (list
284    (add-target (snarf "src/gc.c"))
285    (add-target (snarf "src/lib.c" #:mes? #t))
286    (add-target (snarf "src/math.c" #:mes? #t))
287    (add-target (snarf "src/mes.c" #:mes? #t))
288    (add-target (snarf "src/posix.c" #:mes? #t))
289    (add-target (snarf "src/reader.c" #:mes? #t))
290    (add-target (snarf "src/vector.c" #:mes? #t))))
291
292 (add-target (bin.gcc "src/mes.c" #:dependencies gcc-snarf-targets
293                      #:defines `("FIXED_PRIMITIVES=1"
294                                  "MES_FULL=1"
295                                  "POSIX=1"
296                                  ,(string-append "VERSION=\"" %version "\"")
297                                  ,(string-append "MODULEDIR=\"" (string-append %moduledir "/") "\"")
298                                  ,(string-append "PREFIX=\"" %prefix "\""))))
299
300 (add-target (bin.gcc "src/mes.c" #:libc #f
301                      #:dependencies mes-snarf-targets
302                      #:defines `("FIXED_PRIMITIVES=1"
303                                  "MES_FULL=1"
304                                  ,(string-append "VERSION=\"" %version "\"")
305                                  ,(string-append "MODULEDIR=\"" (string-append %moduledir "/") "\"")
306                                  ,(string-append "PREFIX=\"" %prefix "\""))))
307
308 (add-target (bin.mescc "src/mes.c" #:dependencies mes-snarf-targets
309                        #:defines `("FIXED_PRIMITIVES=1"
310                                    "MES_FULL=1"
311                                  ,(string-append "VERSION=\"" %version "\"")
312                                  ,(string-append "MODULEDIR=\"" (string-append %moduledir "/") "\"")
313                                  ,(string-append "PREFIX=\"" %prefix "\""))))
314
315 (define mes-tests
316   '("tests/read.test"
317     "tests/base.test"
318     "tests/closure.test"
319     "tests/quasiquote.test"
320     "tests/let.test"
321     "tests/scm.test"
322     "tests/display.test"
323     "tests/cwv.test"
324     "tests/math.test"
325     "tests/vector.test"
326     "tests/srfi-1.test"
327     "tests/srfi-13.test"
328     "tests/srfi-14.test"
329     "tests/optargs.test"
330     "tests/fluids.test"
331     "tests/catch.test"
332     "tests/psyntax.test"
333     "tests/pmatch.test"
334     "tests/let-syntax.test"
335     "tests/guile.test"
336     "tests/record.test"
337     ;;sloooowwww
338     ;;"tests/match.test"
339     ;;"tests/peg.test"
340     ))
341
342 (define (add-mes.gcc-test o)
343   (add-target (target (file-name o)))
344   (add-target (check o #:dependencies (list (get-target "src/mes.mlibc-gcc")))))
345
346 (define (add-mes.guile-test o)
347   (add-target (target (file-name o)))
348   (add-target (check o #:dependencies (list (get-target "src/mes.guile")))))
349
350 ;; takes long, and should always pass if...
351 ;;(for-each add-mes.gcc-test mes-tests)
352
353 ;; ...mes.guile passes :-)
354 (for-each add-mes.guile-test mes-tests)
355
356 ;; FIXME: run tests/base.test
357 (setenv "MES" "src/mes.guile")
358
359 (add-target (install "guile/mescc.scm" #:dir "bin" #:substitutes #t))
360 (add-target (install "scripts/mescc.mes" #:dir "bin" #:substitutes #t))
361 (add-target (install "scripts/repl.mes" #:dir "bin" #:substitutes #t))
362 (define bootstrap? #f)
363 (if bootstrap?
364     (add-target (install "src/mes.mes" #:dir "bin" #:installed-name "mes"))
365     (add-target (install "src/mes.guile" #:dir "bin" #:installed-name "mes")))
366
367 (define* ((install-dir #:key dir) name)
368   (add-target (install name  #:dir (string-append dir "/" (dirname name)))))
369
370 (add-target (install "module/mes/base-0.mes" #:dir (string-append %moduledir "/mes") #:substitutes #t))
371 (add-target (install "module/language/c99/compiler.mes" #:dir (string-append %moduledir "/language/c99") #:substitutes #t))
372
373 (define %module-dir "share/mes")
374 (for-each
375  (lambda (f)
376    ((install-dir #:dir (string-append %module-dir)) f))
377  '("module/language/c99/compiler.mes"
378    "module/language/c99/compiler.scm"
379    "module/language/c99/info.mes"
380    "module/language/c99/info.scm"
381    "module/language/paren.mes"
382    "module/mes/M1.mes"
383    "module/mes/M1.scm"
384    "module/mes/as-i386.mes"
385    "module/mes/as-i386.scm"
386    "module/mes/as.mes"
387    "module/mes/as.scm"
388    ;;"module/mes/base-0.mes"
389    "module/mes/base.mes"
390    "module/mes/bytevectors.mes"
391    "module/mes/bytevectors.scm"
392    "module/mes/catch.mes"
393    "module/mes/display.mes"
394    "module/mes/elf.mes"
395    "module/mes/elf.scm"
396    "module/mes/fluids.mes"
397    "module/mes/getopt-long.mes"
398    "module/mes/getopt-long.scm"
399    "module/mes/guile.mes"
400    "module/mes/lalr.mes"
401    "module/mes/lalr.scm"
402    "module/mes/let.mes"
403    "module/mes/match.mes"
404    "module/mes/match.scm"
405    "module/mes/optargs.mes"
406    "module/mes/optargs.scm"
407    "module/mes/peg.mes"
408    "module/mes/peg/cache.scm"
409    "module/mes/peg/codegen.scm"
410    "module/mes/peg/simplify-tree.scm"
411    "module/mes/peg/string-peg.scm"
412    "module/mes/peg/using-parsers.scm"
413    "module/mes/pmatch.mes"
414    "module/mes/pmatch.scm"
415    "module/mes/posix.mes"
416    "module/mes/pretty-print.mes"
417    "module/mes/pretty-print.scm"
418    "module/mes/psyntax-0.mes"
419    "module/mes/psyntax-1.mes"
420    "module/mes/psyntax.mes"
421    "module/mes/psyntax.pp"
422    "module/mes/psyntax.ss"
423    "module/mes/quasiquote.mes"
424    "module/mes/quasisyntax.mes"
425    "module/mes/quasisyntax.scm"
426    "module/mes/read-0.mes"
427    "module/mes/record-0.mes"
428    "module/mes/record.mes"
429    "module/mes/repl.mes"
430    "module/mes/scm.mes"
431    "module/mes/syntax.mes"
432    "module/mes/syntax.scm"
433    "module/mes/test.mes"
434    "module/mes/tiny-0.mes"
435    "module/mes/type-0.mes"
436    "module/nyacc/lalr.mes"
437    "module/nyacc/lang/c99/cpp.mes"
438    "module/nyacc/lang/c99/parser.mes"
439    "module/nyacc/lang/calc/parser.mes"
440    "module/nyacc/lang/util.mes"
441    "module/nyacc/lex.mes"
442    "module/nyacc/parse.mes"
443    "module/nyacc/util.mes"
444    "module/rnrs/arithmetic/bitwise.mes"
445    "module/srfi/srfi-0.mes"
446    "module/srfi/srfi-1.mes"
447    "module/srfi/srfi-1.scm"
448    "module/srfi/srfi-13.mes"
449    "module/srfi/srfi-14.mes"
450    "module/srfi/srfi-16.mes"
451    "module/srfi/srfi-16.scm"
452    "module/srfi/srfi-26.mes"
453    "module/srfi/srfi-26.scm"
454    "module/srfi/srfi-43.mes"
455    "module/srfi/srfi-9-psyntax.mes"
456    "module/srfi/srfi-9.mes"
457    "module/srfi/srfi-9.scm"
458    "module/sxml/xpath.mes"
459    "module/sxml/xpath.scm"))
460
461 (define* ((install-guile-dir #:key dir) name)
462   (add-target (install (string-append "guile/" name) #:dir (string-append dir "/" (dirname name)))))
463
464 (for-each
465  (lambda (f)
466    ((install-guile-dir #:dir (string-append %guiledir)) f))
467  %scm-files)
468
469 (for-each
470  (lambda (f)
471    ((install-guile-dir #:dir (string-append %godir)) f))
472  %go-files)
473
474 (add-target (install "mlibc/libc-mes.E" #:dir "lib"))
475 (add-target (install "mlibc/libc-mes.M1" #:dir "lib"))
476 (add-target (install "mlibc/mini-libc-mes.E" #:dir "lib"))
477 (add-target (install "mlibc/mini-libc-mes.M1" #:dir "lib"))
478
479 (for-each
480  (lambda (f)
481    ((install-dir #:dir "share/") f))
482  '("mlibc/include/alloca.h"
483    "mlibc/include/assert.h"
484    "mlibc/include/ctype.h"
485    "mlibc/include/dlfcn.h"
486    "mlibc/include/errno.h"
487    "mlibc/include/fcntl.h"
488    "mlibc/include/features.h"
489    "mlibc/include/inttypes.h"
490    "mlibc/include/libgen.h"
491    "mlibc/include/limits.h"
492    "mlibc/include/locale.h"
493    "mlibc/include/math.h"
494    "mlibc/include/mlibc.h"
495    "mlibc/include/setjmp.h"
496    "mlibc/include/signal.h"
497    "mlibc/include/stdarg.h"
498    "mlibc/include/stdbool.h"
499    "mlibc/include/stdint.h"
500    "mlibc/include/stdio.h"
501    "mlibc/include/stdlib.h"
502    "mlibc/include/stdnoreturn.h"
503    "mlibc/include/string.h"
504    "mlibc/include/strings.h"
505    "mlibc/include/sys/cdefs.h"
506    "mlibc/include/sys/mman.h"
507    "mlibc/include/sys/stat.h"
508    "mlibc/include/sys/time.h"
509    "mlibc/include/sys/timeb.h"
510    "mlibc/include/sys/types.h"
511    "mlibc/include/sys/ucontext.h"
512    "mlibc/include/sys/wait.h"
513    "mlibc/include/time.h"
514    "mlibc/include/unistd.h"))
515
516 (for-each
517  (compose add-target (cut install <> #:dir "share/doc/mes"))
518  '("AUTHORS"
519    ;;"ChangeLog"
520    "COPYING"
521    "HACKING"
522    "INSTALL"
523    "NEWS"
524    "README"))
525
526 (add-target (install "doc/fosdem/fosdem.pdf" #:dir "share/doc/mes"))
527
528 (define (main args)
529   (cond ((member "all-go" args) #t)
530         ((member "clean-go" args) (map delete-file (filter file-exists? %go-files)))
531         ((member "clean" args) (clean))
532         ((member "list" args) (display (string-join (map target-file-name %targets) "\n" 'suffix)))
533         ((member "help" args) (format #t "Usage: ./make.scm [TARGET]...
534
535 Targets:
536     all
537     all-go
538     check
539     clean
540     clean-go
541     help~a
542     install
543     list
544 "
545                                       (string-join (filter (negate (cut string-index <> #\/)) (map target-file-name %targets)) "\n    " 'prefix)))
546         (else
547          (let ((targets (match args
548                           (() (filter (negate check-target?) %targets))
549                           ((? (cut member "all" <>)) (filter (conjoin (negate install-target?)
550                                                                       (negate check-target?))
551                                                              %targets))
552                           ((? (cut member "check" <>)) (filter check-target? %targets))
553                           ((? (cut member "install" <>)) (filter install-target? %targets))
554                           (_ (filter-map (cut get-target <>) args)))))
555            (for-each build targets)
556            ;;((@@ (mes make) store) #:print 0)
557            (exit %status)))))
558
559 (main (cdr (command-line)))