######################### -*- Mode: Makefile-Gmake -*- ########################$ ## ## Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo ## ## The contents of this file are covered under the licence agreement in the ## file "LICENCE" distributed with Cforall. ## ## Makefile.in -- ## ## Author : Peter A. Buhr ## Created On : Sat May 16 07:50:15 2015 ## Last Modified By : Peter A. Buhr ## Last Modified On : Sat May 16 08:34:55 2015 ## Update Count : 4 ############################################################################### CXX=@CXX@ CXXFLAGS=-g -Wall -I.. #-Wno-unused CP=@CPP@ INSTALL=@INSTALL@ SRCS:=cfa.cc cc1.cc OBJECTS:=${SRCS:.cc=.o} DEPS:=${SRCS:.cc=.d} all: cfa cc1 cfa: cfa.o ${CXX} $< -o $@ cc1 : cc1.o ${CXX} $< -o $@ install: cfa cc1 ${INSTALL} -d @CFA_BINDIR@ ${INSTALL} -d @CFA_LIBDIR@ ${INSTALL} cc1 @CFA_LIBDIR@ ${INSTALL} cfa @CFA_BINDIR@ clean: rm -f cfa cc1 ${OBJECTS} ${DEPS} core