Add makefile and input.

This commit is contained in:
2024-07-07 22:37:10 -04:00
parent ab79a698c8
commit b2a0c3b531
2 changed files with 44 additions and 0 deletions

16
2015/day09/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