Changes in Makefile [8359969:e035612] in mainline
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r8359969 re035612 30 30 # 31 31 32 CSCOPE = cscope 33 STANSE = stanse 34 35 .PHONY: all config config_default distclean clean cscope stanse 32 .PHONY: all config config_default distclean clean cscope 36 33 37 34 all: Makefile.config config.h config.defs … … 39 36 $(MAKE) -C uspace 40 37 $(MAKE) -C boot 41 42 stanse: Makefile.config config.h config.defs43 $(MAKE) -C kernel clean44 $(MAKE) -C kernel EXTRA_TOOL=stanse45 $(STANSE) --checker ReachabilityChecker --checker ThreadChecker:contrib/$(STANSE)/ThreadChecker.xml --jobfile kernel/kernel.job46 47 cscope:48 find kernel boot uspace -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out49 38 50 39 Makefile.config: config_default … … 61 50 62 51 distclean: clean 63 rm -f $(CSCOPE).outMakefile.config config.h config.defs tools/*.pyc52 rm -f Makefile.config config.h config.defs tools/*.pyc 64 53 65 54 clean: 66 $(MAKE) -C kernel clean 67 $(MAKE) -C uspace clean 68 $(MAKE) -C boot 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
Note:
See TracChangeset
for help on using the changeset viewer.