Microsecond timers for Indy. From Keith Wesolowsky.
[linux-2.6/linux-mips.git] / arch / mips / sgi / kernel / Makefile
blob6eb3f1775817300f2a3001dd40d4942566e87dae
2 # Makefile for the SGI specific kernel interface routines
3 # under Linux.
5 # Note! Dependencies are done automagically by 'make dep', which also
6 # removes any old dependencies. DON'T put your own dependencies here
7 # unless it's something special (ie not a .c file).
9 # Note 2! The CFLAGS definitions are now in the main makefile...
11 .S.s:
12 $(CPP) $(CFLAGS) $< -o $*.s
13 .S.o:
14 $(CC) $(CFLAGS) -c $< -o $*.o
16 OBJS = indy_mc.o indy_sc.o indy_hpc.o indy_int.o indy_rtc.o \
17 system.o indyIRQ.o reset.o setup.o time.o
18 ifdef CONFIG_SGI_PROM_CONSOLE
19 OBJS += promcon.o
20 endif
22 all: sgikern.a
24 sgikern.a: $(OBJS)
25 $(AR) rcs sgikern.a $(OBJS)
26 sync
28 indyIRQ.o: indyIRQ.S
30 dep:
31 $(CPP) $(CPPFLAGS) -M *.c > .depend
33 include $(TOPDIR)/Rules.make