Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / openbios / arch / unix / plugins / plugin_pci / Makefile.old
1 # tag: Makefile for OpenBIOS PCI plugin
2 #
3 # Copyright (C) 2003 Stefan Reinauer
4 #
5 # See the file "COPYING" for further information about
6 # the copyright and warranty status of this work.
7 #
8
9 PLUGIN_SOURCES = plugin_pci.c
10 PLUGIN_NAME    = plugin_pci.so
11
12 INCLUDES := -I$(TOPDIR)/include -I$(BUILDDIR) -I..
13 VPATH    := $(VPATH):.
14
15 all: $(PLUGIN_NAME)
16
17 $(PLUGIN_NAME): $(PLUGIN_SOURCES)
18         $(CC) -shared -Wall -Os -fPIC $(INCLUDES) $< -o $(BUILDDIR)/$@
19
20 clean:
21         rm -f plugin_*.so