source: driver/Makefile.in@ 643a2e1

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 643a2e1 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
7CXX=@CXX@
8CXXFLAGS=-g -Wall -I.. #-Wno-unused
9CP=@CPP@
10INSTALL=@INSTALL@
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 @CFA_BINDIR@
26 $(INSTALL) -d @CFA_LIBDIR@
27 $(INSTALL) cc1 @CFA_LIBDIR@
28 $(INSTALL) cfa @CFA_BINDIR@
29
30clean:
31 rm -f cfa cc1 $(OBJECTS) $(DEPS) core
Note: See TracBrowser for help on using the repository browser.