ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
deferred_resn
demangler
enum
forall-pointer-decay
jacob/cs343-translation
jenkins-sandbox
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
with_gc
Last change
on this file since fe26fbf was 24f4671, checked in by Thierry Delisle <tdelisle@…>, 9 years ago |
Added defines to driver to enable debug/release modes (not implemented yet)
|
-
Property mode
set to
100644
|
File size:
1015 bytes
|
Rev | Line | |
---|
[00cc023] | 1 | ######################## -*- Mode: Makefile-Automake -*- ######################
|
---|
| 2 | ##
|
---|
| 3 | ## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
| 4 | ##
|
---|
| 5 | ## The contents of this file are covered under the licence agreement in the
|
---|
| 6 | ## file "LICENCE" distributed with Cforall.
|
---|
| 7 | ##
|
---|
[47a8d17] | 8 | ## Makefile.am --
|
---|
[00cc023] | 9 | ##
|
---|
| 10 | ## Author : Peter A. Buhr
|
---|
| 11 | ## Created On : Sun May 31 08:49:31 2015
|
---|
| 12 | ## Last Modified By : Peter A. Buhr
|
---|
[4b1afb6] | 13 | ## Last Modified On : Fri Oct 28 13:46:06 2016
|
---|
| 14 | ## Update Count : 10
|
---|
[00cc023] | 15 | ###############################################################################
|
---|
| 16 |
|
---|
| 17 | # applies to both programs
|
---|
[2ee5426] | 18 | AM_CXXFLAGS = -Wall -O2
|
---|
[24f4671] | 19 | if BUILD_NO_LIB
|
---|
| 20 | else
|
---|
| 21 | AM_CXXFLAGS += -DHAVE_LIBCFA
|
---|
| 22 | endif
|
---|
| 23 | if BUILD_DEBUG
|
---|
| 24 | AM_CXXFLAGS += -DHAVE_LIBCFA_DEBUG
|
---|
| 25 | endif
|
---|
| 26 | if BUILD_RELEASE
|
---|
| 27 | AM_CXXFLAGS += -DHAVE_LIBCFA_RELEASE
|
---|
| 28 | endif
|
---|
[00cc023] | 29 |
|
---|
| 30 | bin_PROGRAMS = cfa
|
---|
| 31 | cfa_SOURCES = cfa.cc
|
---|
| 32 |
|
---|
| 33 | # put into lib for now
|
---|
| 34 | cc1libdir = ${libdir}
|
---|
| 35 | cc1lib_PROGRAMS = cc1
|
---|
| 36 | cc1_SOURCES = cc1.cc
|
---|
[d3b7937] | 37 |
|
---|
| 38 | MAINTAINERCLEANFILES = @CFA_PREFIX@/bin/${bin_PROGRAMS} @CFA_PREFIX@/lib/${cc1lib_PROGRAMS}
|
---|
Note:
See
TracBrowser
for help on using the repository browser.