adventofcode2021/1-1/Makefile

6 lines
54 B
Makefile
Raw Normal View History

2021-12-18 11:02:50 +01:00
CC := gcc
BIN := app
all: main.c
$(CC) $^ -o $(BIN)