summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: a55821a8f90899ce1ea1e151ac2c65f978c8c80c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# SPDX-License-Identifier: GPL-2.0-only
#

.PHONY: pyclean
pyclean:
	@find . -type f \( -name \*~ -o -name \*.pyc \) -delete

.PHONY: tags
tags:
	ctags -R --extras=+fq --python-kinds=+cfmvi

.PHONY: cleantags
cleantags:
	rm -f tags

.PHONY: cleanlogs
cleanlogs:
	rm -rf tuna-20*

.PHONY: clean
clean: pyclean