#!/bin/sh

# A simple build tool.
#
# This shell script must be made executable, using chmod, before running.
# Example:
#
#    $ chmod u+x build
#
# 


# The compiled executable will be named with $TARGET's value.

TARGET=lab6


# The source file(s) should be named in $SOURCES.  Separate multiple source
# file names with a space character and quote the entire string of source
# file names.

SOURCES="lab6.cc"


g++ -o $TARGET \
    `pkg-config --cflags playerc++` \
    $SOURCES \
    `pkg-config --libs playerc++`
