feat: Create memory stresser

This commit is contained in:
2024-09-13 17:31:34 +02:00
parent 208a583701
commit ed935bba14
2 changed files with 26 additions and 0 deletions

11
Makefile Normal file
View File

@ -0,0 +1,11 @@
CC := gcc
CFLAGS := -Wall -Wextra -Werror -pedantic -std=c99 -g
OBJS := main.o
TARGET := main
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) -o $@ $^
.PHONY: clean
clean:
rm -f $(OBJS) $(TARGET)