1#
2#  Copyright 2000 RidgeRun, Inc.
3#  Author: RidgeRun, Inc.
4#     	glonnon@ridgerun.com, skranz@ridgerun.com, stevej@ridgerun.com
5#
6# Makefile for the Galileo EV64120 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
13USE_STANDARD_AS_RULE := true
14
15all:	ev64120.o int-handler.o
16
17O_TARGET := ev64120.o
18
19obj-y			+= serialGT.o int-handler.o promcon.o reset.o setup.o \
20			   irq.o
21obj-$(CONFIG_PCI)	+= fixup-ev64120.o
22
23int-handler.o: int-handler.S
24
25include $(TOPDIR)/Rules.make
26