blob: a43c02b76f66ec97580331d7579ff18b0565ccf2 [file] [log] [blame]
jacquelinecchuang617fd262024-04-19 03:11:14 +08001#!/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"
21parseProgramArguments "${@}"
22
23set -e
24setBuildRoot
25cd "${buildRoot}"
26
27makeTargets=(
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
37gmake -s -C "${programsSubdirectory}" "${makeTargets[@]}"
38exit 0