~ubuntu-branches/ubuntu/utopic/xen/utopic

« back to all changes in this revision

Viewing changes to xen/drivers/pci/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Bastian Blank
  • Date: 2010-05-06 15:47:38 UTC
  • mto: (1.3.1) (15.1.1 sid) (4.1.1 experimental)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20100506154738-agoz0rlafrh1fnq7
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
2
 
# Makefile for the PCI bus specific drivers.
3
 
#
4
 
 
5
 
include $(BASEDIR)/Rules.mk
6
 
 
7
 
OBJS := pci.o quirks.o compat.o names.o setup-res.o
8
 
 
9
 
#obj-$(CONFIG_PCI) += pci.o quirks.o compat.o names.o
10
 
#obj-$(CONFIG_PROC_FS) += proc.o
11
 
 
12
 
#ifndef CONFIG_SPARC64
13
 
#obj-$(CONFIG_PCI) += setup-res.o
14
 
#endif
15
 
 
16
 
#
17
 
# Some architectures use the generic PCI setup functions
18
 
#
19
 
#obj-$(CONFIG_ALPHA) += setup-bus.o setup-irq.o
20
 
#obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o
21
 
#obj-$(CONFIG_PARISC) += setup-bus.o
22
 
#obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o
23
 
#obj-$(CONFIG_ALL_PPC) += setup-bus.o
24
 
#obj-$(CONFIG_DDB5476) += setup-bus.o
25
 
#obj-$(CONFIG_SGI_IP27) += setup-irq.o
26
 
 
27
 
#ifndef CONFIG_X86
28
 
#obj-y += syscall.o
29
 
#endif
30
 
 
31
 
default: $(OBJS)
32
 
        $(LD) -r -o driver.o $(OBJS)
33
 
 
34
 
clean:
35
 
        rm -f *.o *~ core gen-devlist classlist.h devlist.h
36
 
 
37
 
names.o: names.c devlist.h classlist.h
38
 
 
39
 
devlist.h classlist.h: pci.ids gen-devlist
40
 
        ./gen-devlist <pci.ids
41
 
 
42
 
gen-devlist: gen-devlist.c
43
 
        $(HOSTCC) $(HOSTCFLAGS) -o gen-devlist gen-devlist.c
44
 
 
 
1
obj-y += pci.o