* added 0.99 linux version
[mascara-docs.git] / i386 / linux / linux-2.3.21 / arch / mips / sgi / kernel / Makefile
blob8a57e13405ee54862a1704ee92880bf57dcc033e
1 # $Id: Makefile,v 1.7 1999/05/07 18:00:16 ulfc Exp $
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 indy_timer.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) -M *.c > .depend
33 include $(TOPDIR)/Rules.make