source: driver/Makefile @ 134b86a

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 134b86a was 51b7345, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

initial commit

  • Property mode set to 100644
File size: 604 bytes
Line 
1###
2### This file is part of the Cforall project
3###
4### $Id: Makefile.in,v 1.5 2005/08/26 19:16:54 rcbilson Exp $
5###
6
7CXX=g++
8CXXFLAGS=-g -Wall -I.. #-Wno-unused
9CP=gcc -E
10INSTALL=/usr/bin/install -c
11
12SRCS:=cfa.cc cc1.cc
13OBJECTS:=$(SRCS:.cc=.o)
14DEPS:=$(SRCS:.cc=.d)
15
16all: cfa cc1
17
18cfa: cfa.o
19        $(CXX) $< -o $@
20
21cc1 : cc1.o
22        $(CXX) $< -o $@
23
24install: cfa cc1
25        $(INSTALL) -d /u/pabuhr/software/cfa/cfa-cc/bin
26        $(INSTALL) -d /u/pabuhr/software/cfa/cfa-cc/lib
27        $(INSTALL) cc1 /u/pabuhr/software/cfa/cfa-cc/lib
28        $(INSTALL) cfa /u/pabuhr/software/cfa/cfa-cc/bin
29
30clean:
31        rm -f cfa cc1 $(OBJECTS) $(DEPS) core
Note: See TracBrowser for help on using the repository browser.