Add initial files

This commit is contained in:
Santiago Lo Coco 2021-08-28 11:31:09 -03:00
commit eca8d9b0a4
2 changed files with 30 additions and 0 deletions

6
.gitignore vendored Normal file
View File

@ -0,0 +1,6 @@
# Files
*.o
.bash_history
# Folders
Test/*

24
Makefile Normal file
View File

@ -0,0 +1,24 @@
CC = gcc
CCFLAGS = -Wall -std=c99 -pedantic # -g (si queremos debuggear)
SOURCES = $(wildcard *.c)
OBJECTS = $(SOURCES:.c=.o)
all: $(OBJECTS)
%.o : %.c
$(CC) $(CFLAGS) $^ -o $@
clean:
rm -rf $(OBJECTS)
test:
# Agregar encabezados primero!!!!
pvs-studio-analyzer trace -- make
pvs-studio-analyzer analyze
plog-converter -a '64:1,2,3;GA:1,2,3;OP:1,2,3' -t tasklist -o report.tasks PVS-Studio.log
# cppcheck --quiet --enable=all --force --inconclusive .
# valgrind (file)
.PHONY: all clean test