advent2023

Advent of Code 2023 solutions
git clone git://bsandro.tech/advent2023
Log | Files | Refs | LICENSE

commit f99cae9312f858e25b013b8fa4ba524390bb3e8f
parent 01e91e73f0dd2caaffbda55b347731505f566efb
Author: bsandro <email@bsandro.tech>
Date:   Mon, 20 Oct 2025 22:53:48 +0300

day10 Makefile no longer hides commands

Diffstat:
Mday10/Makefile | 16++++++++--------
1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/day10/Makefile b/day10/Makefile @@ -13,25 +13,25 @@ clean: rm -f $(OBJ) $(NAME) %.o : %.c $(DEPS) - @$(CC) $(CFLAGS) -c $< -o $@ + $(CC) $(CFLAGS) -c $< -o $@ $(NAME): $(OBJ) - @$(CC) $(OBJ) -o $@ $(LDFLAGS) + $(CC) $(OBJ) -o $@ $(LDFLAGS) run: $(NAME) - @./$(NAME) input.txt + ./$(NAME) input.txt test: $(NAME) - @./$(NAME) test.txt + ./$(NAME) test.txt test2: $(NAME) - @./$(NAME) test2.txt + ./$(NAME) test2.txt test3: $(NAME) - @./$(NAME) test3.txt + ./$(NAME) test3.txt test4: $(NAME) - @./$(NAME) test4.txt + ./$(NAME) test4.txt test5: $(NAME) - @./$(NAME) test5.txt + ./$(NAME) test5.txt