diff --git a/example/Numerics/Agent_sim/Makefile b/example/Numerics/Agent_sim/Makefile deleted file mode 100644 index 1638aae67fd2cccf352bef2205c34b0a8f622f33..0000000000000000000000000000000000000000 --- 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 9e71d19be3e9d9ffa8a03a346560ee0e3cd44a71..8d59f6130cc512481e341c9f4f3bc3b78fdf7fa0 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