######################## -*- Mode: Makefile-Automake -*- ###################### ## ## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo ## ## The contents of this file are covered under the licence agreement in the ## file "LICENCE" distributed with Cforall. ## ## Makefile.am -- ## ## Author : Peter A. Buhr ## Created On : Sun May 31 08:49:31 2015 ## Last Modified By : Peter A. Buhr ## Last Modified On : Fri Oct 28 13:46:06 2016 ## Update Count : 10 ############################################################################### # applies to both programs AM_CXXFLAGS = -Wall -O2 if BUILD_NO_LIB else AM_CXXFLAGS += -DHAVE_LIBCFA endif if BUILD_DEBUG AM_CXXFLAGS += -DHAVE_LIBCFA_DEBUG endif if BUILD_RELEASE AM_CXXFLAGS += -DHAVE_LIBCFA_RELEASE endif bin_PROGRAMS = cfa cfa_SOURCES = cfa.cc # put into lib for now cc1libdir = ${libdir} cc1lib_PROGRAMS = cc1 cc1_SOURCES = cc1.cc MAINTAINERCLEANFILES = @CFA_PREFIX@/bin/${bin_PROGRAMS} @CFA_PREFIX@/lib/${cc1lib_PROGRAMS}