diff --git a/Makefile b/Makefile index 5c702c7..e21211a 100644 --- a/Makefile +++ b/Makefile @@ -4,12 +4,14 @@ CFLAGS = -Wall -Werror -Wextra -Ofast -std=c2x all: build run valgrind build_risspam run_risspam build: + @echo "Compiling retoor_c project.". @# removed -pedantic flag because it doesn't accept ' for formatting numbers @# using printf - @$(CC) $(CFLAGS) isspam.c -o isspam + @$(CC) $(CFLAGS) retoor_c/isspam.c -o isspam build_risspam: + @echo "Compiling 12bitfloat_rust project." cd 12bitfloat_rust/risspam && cargo run --release && cp target/release/risspam ../../ diff --git a/isspam.c b/retoor_c/isspam.c similarity index 100% rename from isspam.c rename to retoor_c/isspam.c diff --git a/rmalloc.h b/retoor_c/rmalloc.h similarity index 100% rename from rmalloc.h rename to retoor_c/rmalloc.h diff --git a/rstr.h b/retoor_c/rstr.h similarity index 100% rename from rstr.h rename to retoor_c/rstr.h diff --git a/rstring_list.h b/retoor_c/rstring_list.h similarity index 100% rename from rstring_list.h rename to retoor_c/rstring_list.h diff --git a/totals.py b/retoor_c/totals.py similarity index 100% rename from totals.py rename to retoor_c/totals.py