jacquelinecchuang | 617fd26 | 2024-04-19 03:11:14 +0800 | [diff] [blame] | 1 | #!/usr/bin/env bash |
| 2 | ############################################################################### |
| 3 | # BRLTTY - A background process providing access to the console screen (when in |
| 4 | # text mode) for a blind person using a refreshable braille display. |
| 5 | # |
| 6 | # Copyright (C) 1995-2023 by The BRLTTY Developers. |
| 7 | # |
| 8 | # BRLTTY comes with ABSOLUTELY NO WARRANTY. |
| 9 | # |
| 10 | # This is free software, placed under the terms of the |
| 11 | # GNU Lesser General Public License, as published by the Free Software |
| 12 | # Foundation; either version 2.1 of the License, or (at your option) any |
| 13 | # later version. Please see the file LICENSE-LGPL for details. |
| 14 | # |
| 15 | # Web Page: http://brltty.app/ |
| 16 | # |
| 17 | # This software is maintained by Dave Mielke <dave@mielke.cc>. |
| 18 | ############################################################################### |
| 19 | |
| 20 | . "$(dirname "${0}")/../prologue.sh" |
| 21 | parseProgramArguments "${@}" |
| 22 | |
| 23 | set -e |
| 24 | setBuildRoot |
| 25 | cd "${buildRoot}" |
| 26 | |
| 27 | makeTargets=( |
| 28 | brltty braille-drivers speech-drivers screen-drivers |
| 29 | brltty-trtxt brltty-ttb brltty-ctb brltty-atb brltty-ktb |
| 30 | brltty-tune brltty-morse brltty-pty |
| 31 | brltty-lscmds brltty-hid |
| 32 | brltty-cldr brltty-lsinc |
| 33 | brltest spktest scrtest crctest msgtest |
| 34 | all-api-bindings brltty-clip xbrlapi apitest |
| 35 | ) |
| 36 | |
| 37 | gmake -s -C "${programsSubdirectory}" "${makeTargets[@]}" |
| 38 | exit 0 |