source: driver/Makefile.am@ 37fe352

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 no_list persistent-indexer pthread-emulation qualifiedEnum
Last change on this file since 37fe352 was c59712e, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Parent make now seems to properly call libcfa

  • 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 : Mon Apr 30 17:44:17 2018
14## Update Count : 11
15###############################################################################
16
17# applies to both programs
18AM_CXXFLAGS = -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src
19
20# don't install cfa directly
21noinst_PROGRAMS = cfa
22
23# use
24install-exec-hook:
25 @test -z "$(CFA_BINDIR)" || $(MKDIR_P) "$(CFA_BINDIR)"
26 @echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) cfa '$(CFA_BINDIR)/$(CFA_NAME)'"; \
27 $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) cfa $(CFA_BINDIR)/$(CFA_NAME) || exit $$?
28
29uninstall-hook:
30 @echo " ( cd '$(CFA_BINDIR)' && rm -f $(CFA_NAME) )"; \
31 cd "$(CFA_BINDIR)" && rm -f $(CFA_NAME)
32
33cfa_SOURCES = cfa.cc
34
35# put into lib for now
36cc1libdir = ${CFA_LIBDIR}
37cc1lib_PROGRAMS = cc1
38cc1_SOURCES = cc1.cc
39
40# cfa-cpp$(EXEEXT): $(top_builddir)/driver/cfa-cpp$(EXEEXT)
41# cp $(<) $(@)
42
43MAINTAINERCLEANFILES = $(CFA_BINDIR)/$(CFA_NAME) @CFA_PREFIX@/lib/${cc1lib_PROGRAMS}
Note: See TracBrowser for help on using the repository browser.