consolidate all repos to one for archive

This commit is contained in:
2025-01-28 13:46:42 +01:00
commit a6610fbc7a
5350 changed files with 2705721 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
CC=mpic++
INCLUDE_DIR= include
SRC_DIR= src
# Get all cpp files from src directory
SRCS := $(wildcard $(SRC_DIR)/*.cpp)
all: main run
main: main.cpp $(SRCS)
$(CC) -o3 -I$(INCLUDE_DIR) $(SRCS) main.cpp -o main
debug: main.cpp $(SRCS)
$(CC) -I$(INCLUDE_DIR) $(SRCS) -g main.cpp -o main
run: main
mpirun -n 4 ./main
zip:
zip -r main.zip main.cpp makefile shakespeare.txt
clean:
rm main