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 a0d9f94 was
51b7345,
checked in by Peter A. Buhr <pabuhr@…>, 10 years ago
|
initial commit
|
-
Property mode set to
100644
|
File size:
604 bytes
|
Rev | Line | |
---|
[51b7345] | 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 | |
---|
| 7 | CXX=g++ |
---|
| 8 | CXXFLAGS=-g -Wall -I.. #-Wno-unused |
---|
| 9 | CP=gcc -E |
---|
| 10 | INSTALL=/usr/bin/install -c |
---|
| 11 | |
---|
| 12 | SRCS:=cfa.cc cc1.cc |
---|
| 13 | OBJECTS:=$(SRCS:.cc=.o) |
---|
| 14 | DEPS:=$(SRCS:.cc=.d) |
---|
| 15 | |
---|
| 16 | all: cfa cc1 |
---|
| 17 | |
---|
| 18 | cfa: cfa.o |
---|
| 19 | $(CXX) $< -o $@ |
---|
| 20 | |
---|
| 21 | cc1 : cc1.o |
---|
| 22 | $(CXX) $< -o $@ |
---|
| 23 | |
---|
| 24 | install: 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 | |
---|
| 30 | clean: |
---|
| 31 | rm -f cfa cc1 $(OBJECTS) $(DEPS) core |
---|
Note: See
TracBrowser
for help on using the repository browser.