~martin-decky/helenos/rcu

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Martin Decky
  • Date: 2009-11-25 14:45:59 UTC
  • Revision ID: martin@uranus.dsrg.hide.ms.mff.cuni.cz-20091125144559-nxkz9vfpudbd24uu
style changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
## Include configuration
30
30
#
31
31
 
32
 
CSCOPE = cscope.out
 
32
CSCOPE = cscope
33
33
STANSE = stanse
34
34
 
35
35
.PHONY: all config config_default distclean clean cscope stanse
45
45
        $(STANSE) --checker ReachabilityChecker --jobfile kernel/kernel.job
46
46
 
47
47
cscope:
48
 
        find kernel boot uspace -regex '^.*\.[chsS]$$' | xargs cscope -b -k -u -f$(CSCOPE)
 
48
        find kernel boot uspace -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out
49
49
 
50
50
Makefile.config: config_default
51
51
 
60
60
        tools/config.py HelenOS.config
61
61
 
62
62
distclean: clean
63
 
        rm -f $(CSCOPE) Makefile.config config.h config.defs tools/*.pyc
 
63
        rm -f $(CSCOPE).out Makefile.config config.h config.defs tools/*.pyc
64
64
 
65
65
clean:
66
66
        $(MAKE) -C kernel clean