#!/bin/bash

all: test

test:
	cd ./unimodality && make test

clean:
	rm -rf ./__pycache__
	cd ./unimodality && make clean

