source: driver/Makefile.in @ 843054c2

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 843054c2 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
17CXX=@CXX@
18CXXFLAGS=-g -Wall -I.. #-Wno-unused
19CP=@CPP@
20INSTALL=@INSTALL@
21
22SRCS:=cfa.cc cc1.cc
23OBJECTS:=${SRCS:.cc=.o}
24DEPS:=${SRCS:.cc=.d}
25
26all: cfa cc1
27
28cfa: cfa.o
29        ${CXX} $< -o $@
30
31cc1 : cc1.o
32        ${CXX} $< -o $@
33
34install: cfa cc1
35        ${INSTALL} -d @CFA_BINDIR@
36        ${INSTALL} -d @CFA_LIBDIR@
37        ${INSTALL} cc1 @CFA_LIBDIR@
38        ${INSTALL} cfa @CFA_BINDIR@
39
40clean:
41        rm -f cfa cc1 ${OBJECTS} ${DEPS} core
Note: See TracBrowser for help on using the repository browser.