From 0901aeb128b8447c5466d4bd362b83bdb73bd98b Mon Sep 17 00:00:00 2001 From: Pietro Incardona <i-bird@linux.fritz.box> Date: Fri, 1 Apr 2016 11:41:22 +0200 Subject: [PATCH] Disable Agent_sim --- example/Numerics/Agent_sim/Makefile | 21 --------------------- example/Vector/1_verlet/Makefile | 2 +- 2 files changed, 1 insertion(+), 22 deletions(-) delete mode 100644 example/Numerics/Agent_sim/Makefile diff --git a/example/Numerics/Agent_sim/Makefile b/example/Numerics/Agent_sim/Makefile deleted file mode 100644 index 1638aae6..00000000 --- a/example/Numerics/Agent_sim/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -include ../../../example.mk - -CC=mpic++ - -LDIR = - -OBJ = main.o - -%.o: %.cpp - $(CC) -O3 -g -c --std=c++11 -o $@ $< $(INCLUDE_PATH) -I/home/i-bird/HDF5/include - -agsim: $(OBJ) - $(CC) -o $@ $^ $(CFLAGS) $(LIBS_PATH) $(LIBS) - -all: agsim - -.PHONY: clean all - -clean: - rm -f *.o *~ core agsim - diff --git a/example/Vector/1_verlet/Makefile b/example/Vector/1_verlet/Makefile index 9e71d19b..8d59f613 100644 --- a/example/Vector/1_verlet/Makefile +++ b/example/Vector/1_verlet/Makefile @@ -12,7 +12,7 @@ OBJ = main.o verlet: $(OBJ) $(CC) -o $@ $^ $(CFLAGS) $(LIBS_PATH) $(LIBS) -all: vect +all: verlet .PHONY: clean all -- GitLab