Changeset 988 for trunk/kBuild/header.kmk
- Timestamp:
- May 29, 2007, 5:52:30 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kBuild/header.kmk
r985 r988 27 27 ifndef __header_kmk__ 28 28 # start-of-file-content 29 ifdef KBUILD_PROFILE_SELF 30 _KBUILD_TS_HEADER_START := $(nanots ) # just a dummy warm up query 31 $(info prof: since start - since previous - event description) 32 _KBUILD_TS_HEADER_START := $(nanots ) 33 _KBUILD_TS_PREV := $(_KBUILD_TS_HEADER_START) 34 endif 29 35 30 36 … … 799 805 800 806 # Include the config.kmk we found file (or the default one). 801 include $(_CFGFILE) 807 ifdef KBUILD_PROFILE_SELF 808 _KBUILD_TS_NOW := $(nanots ) 809 $(info prof: $(int-sub $(_KBUILD_TS_NOW), $(_KBUILD_TS_HEADER_START)) - $(int-sub $(_KBUILD_TS_NOW), $(_KBUILD_TS_PREV)) - including $(_CFGFILE)) 810 _KBUILD_TS_PREV := $(_KBUILD_TS_NOW) 811 812 include $(_CFGFILE) 813 814 _KBUILD_TS_NOW := $(nanots ) 815 $(info prof: $(int-sub $(_KBUILD_TS_NOW), $(_KBUILD_TS_HEADER_START)) - $(int-sub $(_KBUILD_TS_NOW), $(_KBUILD_TS_PREV)) - included $(_CFGFILE)) 816 _KBUILD_TS_PREV := $(_KBUILD_TS_NOW) 817 else 818 include $(_CFGFILE) 819 endif 820 802 821 803 822 … … 963 982 964 983 984 ifdef KBUILD_PROFILE_SELF 985 _KBUILD_TS_HEADER_END := $(nanots ) 986 $(info prof: $(int-sub $(_KBUILD_TS_HEADER_END), $(_KBUILD_TS_HEADER_START)) - $(int-sub $(_KBUILD_TS_HEADER_END), $(_KBUILD_TS_PREV)) - end of header.kmk) 987 _KBUILD_TS_PREV := $(_KBUILD_TS_HEADER_END) 988 endif 989 965 990 # end-of-file-content 966 991 __header_kmk__ := 1
Note:
See TracChangeset
for help on using the changeset viewer.