1#
2#  Copyright 2000 MontaVista Software Inc.
3#  Author: MontaVista Software, Inc.
4#     	ppopov@mvista.com or source@mvista.com
5#
6# Makefile for the Alchemy Semiconductor PB1000 board.
7#
8# Note! Dependencies are done automagically by 'make dep', which also
9# removes any old dependencies. DON'T put your own dependencies here
10# unless it's something special (ie not a .c file).
11#
12
13.S.s:
14	$(CPP) $(CFLAGS) $< -o $*.s
15.S.o:
16	$(CC) $(CFLAGS) -c $< -o $*.o
17
18O_TARGET := db1x00.o
19
20obj-y := init.o setup.o
21
22obj-$(CONFIG_PCI) += pci_fixup.o pci_ops.o
23
24include $(TOPDIR)/Rules.make
25