ADTarm-ehast-experimentalcleanup-dtorsenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change
on this file since ca59826 was
107b01a,
checked in by Thierry Delisle <tdelisle@…>, 6 years ago
|
Several changes to the makefiles
- change .c tests to .cfa
- add require for libtool in configure
- libtoolize to fix some warnings
|
-
Property mode set to
100644
|
File size:
1.4 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 : Thu Aug 2 12:18:25 2018 |
---|
14 | ## Update Count : 14 |
---|
15 | ############################################################################### |
---|
16 | |
---|
17 | AUTOMAKE_OPTIONS = foreign # do not require all the GNU file names |
---|
18 | ACLOCAL_AMFLAGS = -I automake |
---|
19 | |
---|
20 | # applies to both programs |
---|
21 | AM_CXXFLAGS = @HOST_FLAGS@ -Wall -O2 -g -std=c++14 -I${abs_top_srcdir}/src |
---|
22 | |
---|
23 | # don't install cfa directly |
---|
24 | noinst_PROGRAMS = cfa |
---|
25 | |
---|
26 | # use |
---|
27 | install-exec-hook: |
---|
28 | @test -z "$(CFA_BINDIR)" || $(MKDIR_P) "$(CFA_BINDIR)" |
---|
29 | @echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) cfa '$(CFA_BINDIR)/$(CFA_NAME)'"; \ |
---|
30 | $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) cfa $(CFA_BINDIR)/$(CFA_NAME) || exit $$? |
---|
31 | |
---|
32 | uninstall-hook: |
---|
33 | @echo " ( cd '$(CFA_BINDIR)' && rm -f $(CFA_NAME) )"; \ |
---|
34 | cd "$(CFA_BINDIR)" && rm -f $(CFA_NAME) |
---|
35 | |
---|
36 | cfa_SOURCES = cfa.cc |
---|
37 | |
---|
38 | # put into lib for now |
---|
39 | cc1libdir = ${CFA_LIBDIR} |
---|
40 | cc1lib_PROGRAMS = as cc1 |
---|
41 | as_SOURCES = as.cc |
---|
42 | cc1_SOURCES = cc1.cc |
---|
43 | |
---|
44 | MAINTAINERCLEANFILES = $(CFA_BINDIR)/$(CFA_NAME) @CFA_PREFIX@/lib/${cc1lib_PROGRAMS} |
---|
Note: See
TracBrowser
for help on using the repository browser.