SHELL := /bin/bash

.PHONY: list add remove all

list:
	./list.sh

add:
	./add.sh

remove:
	./remove.sh

all: list add remove
