-
Notifications
You must be signed in to change notification settings - Fork 15
/
buildBinaries
executable file
·20 lines (16 loc) · 1.05 KB
/
buildBinaries
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/bash
echo Starting at $(date)
echo
echo "Compiling at_activate"; dart compile exe --verbosity error bin/activate_cli.dart -o bin/at_activate &
echo "Compiling srv"; dart compile exe --verbosity error bin/srv.dart -o bin/srv &
echo "Compiling sshnpd"; dart compile exe --verbosity error bin/sshnpd.dart -o bin/sshnpd &
echo "Compiling srvd"; dart compile exe --verbosity error bin/srvd.dart -o bin/srvd &
echo "Compiling sshnp"; dart compile exe --verbosity error bin/sshnp.dart -o bin/sshnp &
echo "Compiling npt"; dart compile exe --verbosity error bin/npt.dart -o bin/npt &
echo "Compiling npp_file"; dart compile exe --verbosity error bin/npp_file.dart -o bin/npp_file &
echo "Compiling npp_atserver"; dart compile exe --verbosity error bin/npp_atserver.dart -o bin/npp_atserver &
echo "Compiling demo/npa_always_deny"; dart compile exe --verbosity error bin/demo/npa_always_deny.dart -o bin/demo/npa_always_deny &
echo "Compiling demo/npa_cli"; dart compile exe --verbosity error bin/demo/npa_cli.dart -o bin/demo/npa_cli &
wait
echo
echo Finished at $(date)