SHELL := /bin/bash

.PHONY: list detail update-title mark-read delete all

list:
	./list.sh

detail:
	./detail.sh

update-title:
	./update-title.sh

mark-read:
	./mark-read.sh

delete:
	./delete.sh

all: list detail mark-read
