1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
##
## Copyright (C) by Argonne National Laboratory
## See COPYRIGHT in top-level directory
##
include $(top_srcdir)/Makefile_f08.mtest
EXTRA_DIST = testlist
# allocmemf is an "extra" program because it requires a Fortran extension
EXTRA_PROGRAMS = allocmemf90
noinst_PROGRAMS = c2f2cf90 ctypesinf90 c2f90mult
allocmemf90_SOURCES = allocmemf90.f90
c2f2cf90_SOURCES = c2f2cf90.f90 c2f902c.c
ctypesinf90_SOURCES = ctypesinf90.f90 ctypesfromc.c
# C programs get a different mtest utility object
c2f90mult_LDADD = $(mtest_c_objects)
c2f90mult_SOURCES = c2f90mult.c
## add1size.h will be distributed because it's listed in AC_CONFIG_FILES/AC_OUTPUT
# ensure that dependent tests will be rebuilt when add1size.h is updated
BUILT_SOURCES = c2f902c.c ctypesfromc.c
# FIXME what's up with these rules? They appear to copy a file to itself in
# non-VPATH builds...
c2f902c.c: $(srcdir)/../../f90/ext/c2f902c.c
cp $(srcdir)/../../f90/ext/c2f902c.c c2f902c.c
ctypesfromc.c: $(srcdir)/../../f77/ext/ctypesfromc.c
cp $(srcdir)/../../f77/ext/ctypesfromc.c ctypesfromc.c
|