Added py
isspam build / build (push) Failing after 2m9s

This commit is contained in:
2025-03-23 03:25:51 +01:00
parent 611ef8d124
commit fe0357b5d5
2 changed files with 8 additions and 1 deletions
+5 -1
View File
@@ -1,12 +1,16 @@
CC = gcc
CFLAGS = -Ofast
all: build run valgrind build_risspam run_risspam build_cpp build_borded_cpp
all: build run valgrind build_risspam run_risspam build_cpp build_borded_cpp build_py
build:
@echo "Compiling retoor_c project.".
@$(CC) $(CFLAGS) retoor_c/isspam.c -o isspam
build_py:
@echo "Copying py file"
@cp retoor_c/isspam.py isspam.py
build_cpp:
@echo "Compiling C++ version of isspam."
@g++ -Ofast retoor_c/isspam.cpp -o isspam_cpp