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