12 lines
234 B
Makefile
12 lines
234 B
Makefile
2020_DAY2_OBJ = \
|
|
2020/day2/solution.o \
|
|
2020/day2/sample.txt.o \
|
|
2020/day2/input.txt.o \
|
|
common/parse_base10.o
|
|
|
|
2020/day2/solution.elf:
|
|
2020/day2/solution.elf: $(2020_DAY2_OBJ)
|
|
$(DEFAULT_LINK)
|
|
|
|
ALL_ELF += 2020/day2/solution.elf
|