######################## -*- Mode: Makefile-Automake -*- ###################### ## ## 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.am -- ## ## Author : Peter A. Buhr ## Created On : Sun May 31 09:08:15 2015 ## Last Modified By : Peter A. Buhr ## Last Modified On : Fri Nov 20 16:03:46 2015 ## Update Count : 24 ############################################################################### # applies to both programs CFLAGS = -g -Wall -Wno-unused-function # TEMPORARY: does not build with -O2 CC = @CFA_BINDIR@/cfa noinst_PROGRAMS = fstream_test vector_test # build but do not install fstream_test_SOURCES = iostream.c fstream.c fstream_test.c iterator.c vector_test_SOURCES = vector_int.c fstream.c iostream.c array.c iterator.c vector_test.c