Skip to content
Snippets Groups Projects
Commit e0f6da96 authored by BobLeHibou's avatar BobLeHibou
Browse files

file cleanup

parent 507c4560
Branches
No related tags found
No related merge requests found
CC := gcc
CFLAGS := -std=c11 -Wall -Wextra -fsanitize=address -fsanitize=leak -g
SRC = $(wildcard *.c)
all: exec
main: ${SRC}
${CC} ${CFLAGS} ${SRC} -o $@
exec: main
./main
.PHONY: clean
clean:
rm -rf *.o main a.out
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment