ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change
on this file since 451665cc was
b87a5ed,
checked in by Peter A. Buhr <pabuhr@…>, 9 years ago
|
licencing: first groups of files
|
-
Property mode set to
100644
|
File size:
961 bytes
|
Line | |
---|
1 | ######################### -*- Mode: Makefile-Gmake -*- ########################$ |
---|
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.in -- |
---|
9 | ## |
---|
10 | ## Author : Peter A. Buhr |
---|
11 | ## Created On : Sat May 16 07:50:15 2015 |
---|
12 | ## Last Modified By : Peter A. Buhr |
---|
13 | ## Last Modified On : Sat May 16 08:34:55 2015 |
---|
14 | ## Update Count : 4 |
---|
15 | ############################################################################### |
---|
16 | |
---|
17 | CXX=@CXX@ |
---|
18 | CXXFLAGS=-g -Wall -I.. #-Wno-unused |
---|
19 | CP=@CPP@ |
---|
20 | INSTALL=@INSTALL@ |
---|
21 | |
---|
22 | SRCS:=cfa.cc cc1.cc |
---|
23 | OBJECTS:=${SRCS:.cc=.o} |
---|
24 | DEPS:=${SRCS:.cc=.d} |
---|
25 | |
---|
26 | all: cfa cc1 |
---|
27 | |
---|
28 | cfa: cfa.o |
---|
29 | ${CXX} $< -o $@ |
---|
30 | |
---|
31 | cc1 : cc1.o |
---|
32 | ${CXX} $< -o $@ |
---|
33 | |
---|
34 | install: cfa cc1 |
---|
35 | ${INSTALL} -d @CFA_BINDIR@ |
---|
36 | ${INSTALL} -d @CFA_LIBDIR@ |
---|
37 | ${INSTALL} cc1 @CFA_LIBDIR@ |
---|
38 | ${INSTALL} cfa @CFA_BINDIR@ |
---|
39 | |
---|
40 | clean: |
---|
41 | rm -f cfa cc1 ${OBJECTS} ${DEPS} core |
---|
Note: See
TracBrowser
for help on using the repository browser.