Skip to content

Commit 089cb40

Browse files
committed
Define build target for PROGRAM and make it the default target.
1 parent c22aedd commit 089cb40

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile.in

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,9 @@ PROGRAM = mpi_test_suite
164164

165165
.SUFFIXES: .o .c
166166

167-
all: $(OBJ)
167+
all: $(PROGRAM)
168+
169+
$(PROGRAM): $(OBJ)
168170
$(CC) -o $(PROGRAM) $(OBJ) $(LDFLAGS)
169171

170172
$(OBJ): $(HEADER)

0 commit comments

Comments
 (0)