xref: /aosp_15_r20/external/toolchain-utils/contrib/gbiv/bgtask/Makefile (revision 760c253c1ed00ce9abd48f8546f08516e57485fe)
1# Copyright 2023 The ChromiumOS Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5all: bgtask
6
7bgtask: bgtask.cc
8	clang++ -O2 -std=gnu++20 -Wall -Wextra -Werror -g0 -fno-exceptions \
9		bgtask.cc -o bgtask
10
11clean:
12	rm -f bgtask
13