10 lines
169 B
Makefile
10 lines
169 B
Makefile
.ONESHELL:
|
|
SHELL = /usr/bin/bash
|
|
MAKEFLAGS += --no-print-directory
|
|
.SILENT:
|
|
|
|
localclean:
|
|
echo -e "\e[1m * Example cache files...\e[0m"
|
|
rm -f cache.json cache.pickle
|
|
|