source: src/driver/Makefile.am @ 615a096

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 615a096 was 796cea3, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Added proper argument to rename cfa

  • Property mode set to 100644
File size: 1.3 KB
Line 
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##
8## Makefile.am --
9##
10## Author           : Peter A. Buhr
11## Created On       : Sun May 31 08:49:31 2015
12## Last Modified By : Peter A. Buhr
13## Last Modified On : Fri Oct 28 13:46:06 2016
14## Update Count     : 10
15###############################################################################
16
17# applies to both programs
18AM_CXXFLAGS = -Wall -O2
19if BUILD_NO_LIB
20else
21AM_CXXFLAGS += -DHAVE_LIBCFA
22endif
23if BUILD_DEBUG
24AM_CXXFLAGS += -DHAVE_LIBCFA_DEBUG
25endif
26if BUILD_RELEASE
27AM_CXXFLAGS += -DHAVE_LIBCFA_RELEASE
28endif
29
30noinst_PROGRAMS = cfa
31cfa_SOURCES = cfa.cc
32
33install-exec-hook:
34        @echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) cfa '$(CFA_BINDIR)/$(CFA_NAME)'"; \
35        $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) cfa $(CFA_BINDIR)/$(CFA_NAME) || exit $$?
36
37uninstall-hook:
38        @echo " ( cd '$(CFA_BINDIR)' && rm -f $(CFA_NAME) )"; \
39        cd "$(CFA_BINDIR)" && rm -f $(CFA_NAME)
40
41# put into lib for now
42cc1libdir = ${CFA_LIBDIR}
43cc1lib_PROGRAMS = cc1
44cc1_SOURCES = cc1.cc
45
46MAINTAINERCLEANFILES = $(CFA_BINDIR)/$(CFA_NAME) @CFA_PREFIX@/lib/${cc1lib_PROGRAMS}
Note: See TracBrowser for help on using the repository browser.