Restore aoc backup.

This commit is contained in:
2024-07-05 20:35:07 -04:00
parent d84e861477
commit ab79a698c8
6 changed files with 411 additions and 0 deletions

16
2015/day08/makefile Normal file
View File

@@ -0,0 +1,16 @@
CC = gcc
CFLAGS = -std=c99 -Wall -Wextra
LDFLAGS =
DFLAGS = -std=c99 -Wall -Wextra -g
1: answer01.c
$(CC) $(CFLAGS) $(LDFLAGS) answer01.c -o answer01
2: answer02.c
$(CC) $(CFLAGS) $(LDFLAGS) answer02.c -o answer02
1d: answer01.c
$(CC) $(DFLAGS) $(LDFLAGS) answer01.c -o answer01
2d: answer02.c
$(CC) $(DFLAGS) $(LDFLAGS) answer02.c -o answer02