~jsvoboda/helenos/dnsr

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Jiri Svoboda
  • Date: 2012-11-11 21:31:03 UTC
  • mfrom: (1527.1.178 mainline)
  • Revision ID: jiri@wiwaxia-20121111213103-314bmkettwvlwj97
MergeĀ mainlineĀ changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
CONFIG_MAKEFILE = Makefile.config
45
45
CONFIG_HEADER = config.h
46
46
 
47
 
.PHONY: all precheck cscope autotool config_auto config_default config distclean clean check releasefile release
 
47
.PHONY: all precheck cscope cscope_parts autotool config_auto config_default config distclean clean check releasefile release
48
48
 
49
49
all: $(COMMON_MAKEFILE) $(COMMON_HEADER) $(CONFIG_MAKEFILE) $(CONFIG_HEADER)
50
50
        cp -a $(COMMON_HEADER) $(COMMON_HEADER_PREV)
58
58
cscope:
59
59
        find abi kernel boot uspace -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE).out
60
60
 
 
61
cscope_parts:
 
62
        find abi -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_abi.out
 
63
        find kernel -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_kernel.out
 
64
        find boot -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_boot.out
 
65
        find uspace -regex '^.*\.[chsS]$$' | xargs $(CSCOPE) -b -k -u -f$(CSCOPE)_uspace.out
 
66
 
61
67
# Pre-integration build check
62
68
check: $(CHECK)
63
69
ifdef JOBS