Skip to content

Makefile target name mismatch for EXECS variable in introduction-to-groups-and-communicators/code #114

@lxlee

Description

@lxlee

The makefile in tutorials/introduction-to-groups-and-communicators/code uses incorrect target names. The targets are currently named split and groups, but the build outputs (as specified in the EXECS variable) are comm_split and comm_groups.

EXECS=comm_groups comm_split
MPICC?=mpicc

all: ${EXECS}

split: comm_split.c
	${MPICC} -o comm_split comm_split.c

groups: comm_groups.c
	${MPICC} -o comm_groups comm_groups.c

clean:
	rm -f ${EXECS}

Should rename the makefile targets from splitcomm_split and groupscomm_groups to match the executables?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions