1# 2# Makefile for the linux kernel. 3# 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). 7# 8# Note 2! The CFLAGS definitions are now in the main makefile... 9 10.S.s: 11 $(CPP) -traditional $< -o $*.s 12 13O_TARGET := kernel.o 14O_OBJS = sched.o dma.o fork.o exec_domain.o panic.o printk.o sys.o \ 15 module.o exit.o signal.o itimer.o info.o time.o softirq.o \ 16 resource.o sysctl.o 17 18ifeq ($(CONFIG_MODULES),y) 19OX_OBJS = ksyms.o 20endif 21 22include $(TOPDIR)/Rules.make 23 24sched.o: sched.c 25 $(CC) $(CFLAGS) $(PROFILING) -fno-omit-frame-pointer -c $< 26

