Changes in Makefile [4924675:e035612] in mainline


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Makefile

    r4924675 re035612  
    3030#
    3131
    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
    3633
    3734all: Makefile.config config.h config.defs
     
    3936        $(MAKE) -C uspace
    4037        $(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 --jobfile kernel/kernel.job
    46 
    47 cscope:
    48         find kernel boot uspace -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out
    4938
    5039Makefile.config: config_default
     
    6150
    6251distclean: clean
    63         rm -f $(CSCOPE).out Makefile.config config.h config.defs tools/*.pyc
     52        rm -f Makefile.config config.h config.defs tools/*.pyc
    6453
    6554clean:
    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
     59cscope:
     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.