46 lines
792 B
Makefile
46 lines
792 B
Makefile
NAME = codexion
|
|
|
|
SRCS = $(wildcard coders/*.c)
|
|
INCLUDES = coders/codexion.h
|
|
|
|
OBJS = $(SRCS:.c=.o)
|
|
|
|
CC = cc
|
|
CFLAGS = -Wall -Wextra -Werror -pthread
|
|
# CFLAGS = -Wall -Wextra -Werror -pthread -g -fsanitize=thread
|
|
|
|
all: $(NAME)
|
|
|
|
$(NAME): $(OBJS)
|
|
$(CC) $(CFLAGS) -o $@ $^
|
|
|
|
%.o: %.c
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
# number_of_coders
|
|
# time_to_burnout
|
|
# time_to_compile
|
|
# time_to_debug
|
|
# time_to_refactor
|
|
# number_of_compiles_required
|
|
# dongle_cooldown
|
|
# scheduler
|
|
|
|
test: $(NAME)
|
|
./$(NAME) 2 800 200 100 10 5 0 edf
|
|
|
|
test-val: $(NAME)
|
|
valgrind --leak-check=full --show-leak-kinds=all ./$(NAME) 2 800 200 100 10 5 0 edf
|
|
|
|
test-hel: $(NAME)
|
|
valgrind --tool=helgrind ./$(NAME) 2 800 200 100 10 5 0 edf
|
|
|
|
clean:
|
|
rm -f $(OBJS)
|
|
|
|
fclean: clean
|
|
rm -f $(NAME)
|
|
|
|
re: fclean all
|
|
|
|
.PHONY: all clean fclean re
|