Skip to content

Commit

Permalink
examples: drop test_interpose from makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
adammoody committed Apr 16, 2021
1 parent d24e865 commit 82965b3
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions examples/makefile.examples.in
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ OPT ?= -g -O3
LIBDIR = -L@X_LIBDIR@ -Wl,-rpath,@X_LIBDIR@ -lscr
INCLUDES = -I@X_INCLUDEDIR@

all: test_api test_api_multiple test_interpose test_interpose_multiple test_ckpt test_ckpt_F
all: test_api test_api_multiple test_ckpt test_ckpt_F

clean:
rm -rf *.o test_api test_api_multiple test_interpose test_interpose_multiple test_ckpt
rm -rf *.o test_api test_api_multiple test_ckpt

test_api: test_common.o test_common.h test_api.c
$(MPICC) $(OPT) $(CFLAGS) $(INCLUDES) -o test_api test_common.o test_api.c \
Expand All @@ -18,12 +18,6 @@ test_api_multiple: test_common.o test_common.h test_api_multiple.c
$(MPICC) $(OPT) $(CFLAGS) $(INCLUDES) -o test_api_multiple test_common.o test_api_multiple.c \
$(LDFLAGS) $(LIBDIR)

test_interpose: test_common.o test_common.h test_interpose.c
$(MPICC) $(OPT) $(CFLAGS) -o test_interpose test_common.o test_interpose.c $(LDFLAGS)

test_interpose_multiple: test_common.o test_common.h test_interpose_multiple.c
$(MPICC) $(OPT) $(CFLAGS) -o test_interpose_multiple test_common.o test_interpose_multiple.c $(LDFLAGS)

test_common.o: test_common.c test_common.h
$(MPICC) $(OPT) $(CFLAGS) $(INCLUDES) -c -o test_common.o test_common.c

Expand Down

0 comments on commit 82965b3

Please sign in to comment.