SHELL := /bin/bash
export LANG := C.UTF-8
export LC_ALL := C.UTF-8

.PHONY: all build clean

all: build

build:
	@python3 build_month.py

clean:
	rm -rf out
