# Copyright © 2019-2022 Collabora Ltd.
# SPDX-License-Identifier: BSD-3-Clause

CXXFLAGS += -fuse-ld=gold -pthread -Wl,-Bsymbolic

all: hello

clean:
	rm -f hello

hello: hello.cxx
	$(CXX) $(CPPFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ $<
