# -*- python -*-
#
# Copyright (c) 2016 Stefan Seefeld
# All rights reserved.
#
# This file is part of Faber. It is made available under the
# Boost Software License, Version 1.0.
# (Consult LICENSE or http://www.boost.org/LICENSE_1_0.txt)

from faber.tools.cxx import cxx

# make targets from source using a pre-defined C++ compiler tool
obj = rule(cxx.compile, 'hello.o', 'hello.cpp')
hello = rule(cxx.link, 'hello', obj)

default = hello
