blob: e3bfee0c652c95ba534336246993fefab2d5d3e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
#
# Copyright 2000 RidgeRun, Inc.
# Author: RidgeRun, Inc.
# glonnon@ridgerun.com, skranz@ridgerun.com, stevej@ridgerun.com
#
# Makefile for the Galileo EV64120 board.
#
# Note! Dependencies are done automagically by 'make dep', which also
# removes any old dependencies. DON'T put your own dependencies here
# unless it's something special (ie not a .c file).
#
.S.s:
$(CPP) $(CFLAGS) $< -o $*.s
.S.o:
$(CC) $(CFLAGS) -c $< -o $*.o
all: ev64120.o int-handler.o
O_TARGET := ev64120.o
obj-y := serialGT.o int-handler.o promcon.o reset.o setup.o irq.o \
irq-handler.o i2o.o pci_bios.o
int-handler.o: int-handler.S
include $(TOPDIR)/Rules.make
|