ADT
aaron-thesis
arm-eh
ast-experimental
cleanup-dtors
ctor
deferred_resn
demangler
enum
forall-pointer-decay
gc_noraii
jacob/cs343-translation
jenkins-sandbox
memory
new-ast
new-ast-unique-expr
new-env
no_list
persistent-indexer
pthread-emulation
qualifiedEnum
resolv-new
string
with_gc
|
Last change
on this file since d11f789 was 51b73452, checked in by Peter A. Buhr <pabuhr@…>, 11 years ago |
|
initial commit
|
-
Property mode
set to
100644
|
|
File size:
511 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 |
|
|---|
| 7 | CXX=@CXX@
|
|---|
| 8 | CXXFLAGS=-g -Wall -I.. #-Wno-unused
|
|---|
| 9 | CP=@CPP@
|
|---|
| 10 | INSTALL=@INSTALL@
|
|---|
| 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 @CFA_BINDIR@
|
|---|
| 26 | $(INSTALL) -d @CFA_LIBDIR@
|
|---|
| 27 | $(INSTALL) cc1 @CFA_LIBDIR@
|
|---|
| 28 | $(INSTALL) cfa @CFA_BINDIR@
|
|---|
| 29 |
|
|---|
| 30 | clean:
|
|---|
| 31 | rm -f cfa cc1 $(OBJECTS) $(DEPS) core
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.