fd4a5a5e22
- virtual size - resident size (in pages) - text size (in pages) - data size (in pages) - stack size (in pages) develop independent vmmc_stat for testing (not installed)
23 lines
536 B
OCaml
23 lines
536 B
OCaml
#!/usr/bin/env ocaml
|
|
#use "topfind"
|
|
#require "topkg"
|
|
open Topkg
|
|
|
|
let () =
|
|
Pkg.describe "albatross" @@ fun _ ->
|
|
Ok [
|
|
Pkg.bin "app/vmmd" ;
|
|
Pkg.bin "app/vmmd_console" ;
|
|
Pkg.bin "app/vmmd_log" ;
|
|
Pkg.bin "app/vmmd_stats" ;
|
|
Pkg.bin "app/vmmd_tls" ;
|
|
Pkg.bin "app/vmmd_tls_inetd" ;
|
|
Pkg.bin "app/vmmd_influx" ;
|
|
Pkg.bin "app/vmmc_local" ;
|
|
Pkg.bin "app/vmmc_remote" ;
|
|
Pkg.bin "app/vmmc_bistro" ;
|
|
Pkg.bin "app/vmmp_request" ;
|
|
Pkg.bin "app/vmmp_ca" ;
|
|
Pkg.test ~run:false "app/vmmc_stat" ;
|
|
]
|