Keep cscope around after make clean
Follow convention of kernel and keep cscope file around after make clean.
This commit is contained in:
parent
f526af995e
commit
a6ddc20617
3
Makefile
3
Makefile
|
|
@ -75,14 +75,13 @@ snapshot:
|
||||||
> include/SNAPSHOT.h
|
> include/SNAPSHOT.h
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
rm -f cscope.*
|
|
||||||
@for i in $(SUBDIRS) doc; \
|
@for i in $(SUBDIRS) doc; \
|
||||||
do $(MAKE) $(MFLAGS) -C $$i clean; done
|
do $(MAKE) $(MFLAGS) -C $$i clean; done
|
||||||
|
|
||||||
clobber:
|
clobber:
|
||||||
touch Config
|
touch Config
|
||||||
$(MAKE) $(MFLAGS) clean
|
$(MAKE) $(MFLAGS) clean
|
||||||
rm -f Config
|
rm -f Config cscope.*
|
||||||
|
|
||||||
distclean: clobber
|
distclean: clobber
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue