1##
2## Copyright (C) by Argonne National Laboratory
3##     See COPYRIGHT in top-level directory
4##
5
6MPICC = $(bindir)/mpicc
7MPICXX = $(bindir)/mpicxx
8MPIF77 = $(bindir)/mpif77
9MPIFORT = $(bindir)/mpifort
10
11## violate all automake standards and force CC and friends to be MPICC and friends
12CC=$(MPICC)
13CXX=$(MPICXX)
14F77=$(MPIF77)
15FC=$(MPIFORT)
16
17noinst_PROGRAMS = stdiotest stdintest stdintest2 checkenv1 rtest rtestf rtestx \
18		  testout
19
20# programs with non-C source files
21rtestf_SOURCES    = rtestf.F
22rtestx_SOURCES    = rtestx.cxx
23
24# this was commented out in the Makefile.sm, not sure why
25testing:
26#	./cmdtests
27
28CLEANFILES = err.txt out.log out.txt a.out
29
30