summaryrefslogtreecommitdiff
path: root/Makefile
blob: becce0e48c936a871bebc3e3fc045f48d9db8a23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
all: scons

scons:
	scons

sconsi:
	scons --implicit-deps-unchanged

cscope: cscope.out

cscope.out: cscope.files
	cscope -b

cscope.files:
	find . -name '*.[ch]' -o -name '*.cc' > $@

.PHONY: all cscope.files sconsi cscope