source: driver/Makefile.in@ f7d59bf

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 f7d59bf was 8f1b0e1, checked in by Peter A. Buhr <pabuhr@…>, 10 years ago

add generic .gitignore, delete mkinstalldirs, fix configure.ac third attempt

  • Property mode set to 100644
File size: 965 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 : Mon May 25 22:29:20 2015
14## Update Count : 5
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.