diff options
Diffstat (limited to 'kernel/Makefile')
-rw-r--r-- | kernel/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/kernel/Makefile b/kernel/Makefile index 60cd39c84e6d..6c584c55a6e9 100644 --- a/kernel/Makefile +++ b/kernel/Makefile | |||
@@ -91,3 +91,11 @@ quiet_cmd_ikconfiggz = IKCFG $@ | |||
91 | targets += config_data.h | 91 | targets += config_data.h |
92 | $(obj)/config_data.h: $(obj)/config_data.gz FORCE | 92 | $(obj)/config_data.h: $(obj)/config_data.gz FORCE |
93 | $(call if_changed,ikconfiggz) | 93 | $(call if_changed,ikconfiggz) |
94 | |||
95 | $(obj)/time.o: $(obj)/timeconst.h | ||
96 | |||
97 | quiet_cmd_timeconst = TIMEC $@ | ||
98 | cmd_timeconst = $(PERL) $< $(CONFIG_HZ) > $@ | ||
99 | targets += timeconst.h | ||
100 | $(obj)/timeconst.h: $(src)/timeconst.pl FORCE | ||
101 | $(call if_changed,timeconst) | ||