feat: ✨ Create memory stresser
This commit is contained in:
parent
208a583701
commit
ed935bba14
11
Makefile
Normal file
11
Makefile
Normal 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)
|
Loading…
x
Reference in New Issue
Block a user