Changes in Makefile [e035612:8359969] in mainline
Legend:
- Unmodified
- Added
- Removed
-
Makefile
re035612 r8359969 30 30 # 31 31 32 .PHONY: all config config_default distclean clean cscope 32 CSCOPE = cscope 33 STANSE = stanse 34 35 .PHONY: all config config_default distclean clean cscope stanse 33 36 34 37 all: Makefile.config config.h config.defs … … 36 39 $(MAKE) -C uspace 37 40 $(MAKE) -C boot 41 42 stanse: Makefile.config config.h config.defs 43 $(MAKE) -C kernel clean 44 $(MAKE) -C kernel EXTRA_TOOL=stanse 45 $(STANSE) --checker ReachabilityChecker --checker ThreadChecker:contrib/$(STANSE)/ThreadChecker.xml --jobfile kernel/kernel.job 46 47 cscope: 48 find kernel boot uspace -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out 38 49 39 50 Makefile.config: config_default … … 50 61 51 62 distclean: clean 52 rm -f Makefile.config config.h config.defs tools/*.pyc63 rm -f $(CSCOPE).out Makefile.config config.h config.defs tools/*.pyc 53 64 54 65 clean: 55 -$(MAKE) -C kernel clean 56 -$(MAKE) -C uspace clean 57 -$(MAKE) -C boot clean 58 59 cscope: 60 find kernel boot uspace -regex '^.*\.[chsS]$$' -print > srclist 61 rm -f cscope.out 62 cscope -bi srclist 66 $(MAKE) -C kernel clean 67 $(MAKE) -C uspace clean 68 $(MAKE) -C boot clean
Note:
See TracChangeset
for help on using the changeset viewer.