Make HZ_TO_STD macro name lowercase.
[linux-2.6/linux-mips.git] / kernel / Makefile
blob53606a35937dd8c54cc096c6c5d5455f20ddaa00
2 # Makefile for the linux kernel.
4 # Note! Dependencies are done automagically by 'make dep', which also
5 # removes any old dependencies. DON'T put your own dependencies here
6 # unless it's something special (ie not a .c file).
8 # Note 2! The CFLAGS definitions are now in the main makefile...
10 O_TARGET := kernel.o
11 O_OBJS = sched.o dma.o fork.o exec_domain.o panic.o printk.o \
12 module.o exit.o itimer.o info.o time.o softirq.o resource.o \
13 sysctl.o acct.o capability.o ptrace.o timer.o
15 OX_OBJS += signal.o sys.o
17 ifeq ($(CONFIG_UID16),y)
18 O_OBJS += uid16.o
19 endif
21 ifeq ($(CONFIG_KMOD),y)
22 O_OBJS += kmod.o
23 endif
25 ifeq ($(CONFIG_MODULES),y)
26 OX_OBJS += ksyms.o
27 endif
29 ifeq ($(CONFIG_PM),y)
30 OX_OBJS += pm.o
31 endif
33 CFLAGS_sched.o := $(PROFILING) -fno-omit-frame-pointer
35 include $(TOPDIR)/Rules.make