##===- projects/sample/tools/cggen/Makefile ---------------*- Makefile -*-===##

#
# Indicate where we are relative to the top of the source tree.
#
LEVEL=../..

#
# Give the name of the tool.
#
TOOLNAME=cggen

#
# List libraries that we'll need
#
USEDLIBS = callgraphs.a

CPPFLAGS += -std=c++11

LINK_COMPONENTS = core bitreader irreader ipo scalaropts analysis support

#
# Include Makefile.common so we know what to do.
#
include $(LEVEL)/Makefile.common

