This repository has been archived on 2024-05-03. You can view files and clone it, but cannot push or open issues or pull requests.
aoc2023-day1/Makefile

23 lines
244 B
Makefile
Raw Normal View History

2023-12-03 16:47:20 +01:00
CC := cc
CC_OPTIONS := -g
SRCD := src
BIND := out
SRCS := $(wildcard $(SRCD)/*)
BIN := $(BIND)/aoc
all: $(BIND) $(BIN)
run: all
$(BIN)
$(BIND):
mkdir $@
$(BIN): $(SRCS)
$(CC) $(CC_OPTIONS) -o $@ $^
clean:
rm -f $(wildcard $(BIND)/*)