Add cscope target to Makefile
This commit is contained in:
parent
02d2ae55c6
commit
f6aa8e00ac
4
Makefile
4
Makefile
|
|
@ -57,6 +57,7 @@ install: all
|
|||
install -m 0644 $(shell find man/man3 -maxdepth 1 -type f) $(DESTDIR)$(MANDIR)/man3
|
||||
|
||||
clean:
|
||||
rm -f cscope.*
|
||||
@for i in $(SUBDIRS) doc; \
|
||||
do $(MAKE) $(MFLAGS) -C $$i clean; done
|
||||
|
||||
|
|
@ -65,4 +66,7 @@ clobber: clean
|
|||
|
||||
distclean: clobber
|
||||
|
||||
cscope:
|
||||
cscope -b -q -R -Iinclude -sip -slib -smisc -snetem -stc
|
||||
|
||||
.EXPORT_ALL_VARIABLES:
|
||||
|
|
|
|||
Loading…
Reference in New Issue