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

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