From 82965b326893eeea72947c7f5725d81d260748da Mon Sep 17 00:00:00 2001 From: Adam Moody Date: Wed, 14 Apr 2021 17:41:27 -0700 Subject: [PATCH] examples: drop test_interpose from makefile --- examples/makefile.examples.in | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/examples/makefile.examples.in b/examples/makefile.examples.in index 1fc6a905..0f284680 100644 --- a/examples/makefile.examples.in +++ b/examples/makefile.examples.in @@ -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 \ @@ -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