18 lines
231 B
Makefile
18 lines
231 B
Makefile
|
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
|