blob: 83df0ef8ea44ec6351d45f73550d218287185fe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Makefile for the AP1000 files in the Linux kernel
#
# 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) -D__ASSEMBLY__ -ansi $< -o $*.s
.S.o:
$(CC) -D__ASSEMBLY__ -ansi -c $< -o $*.o
all: ap1000lib.o
O_TARGET := ap1000lib.o
O_OBJS := bnet.o timer.o util.o dma.o kgdb.o irq.o \
msc.o hw.o tnet.o sync.o mpp.o \
apmmu.o aplib.o approm.o
include $(TOPDIR)/Rules.make
|