adventofcode2021/1-1/Makefile
2021-12-18 11:08:49 +01:00

6 lines
54 B
Makefile

CC := gcc
BIN := app
all: main.c
$(CC) $^ -o $(BIN)