Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / SLOF / lib / libusb / Makefile
1 # *****************************************************************************
2 # * Copyright (c) 2004, 2008 IBM Corporation
3 # * All rights reserved.
4 # * This program and the accompanying materials
5 # * are made available under the terms of the BSD License
6 # * which accompanies this distribution, and is available at
7 # * http://www.opensource.org/licenses/bsd-license.php
8 # *
9 # * Contributors:
10 # *     IBM Corporation - initial implementation
11 # ****************************************************************************/
12
13 TOPCMNDIR ?= ../..
14
15 include $(TOPCMNDIR)/make.rules
16
17 ASFLAGS = $(FLAG) $(RELEASE) $(CPUARCHDEF) -Wa,-mregnames
18 CPPFLAGS = -I../libc/include $(CPUARCHDEF) -I$(INCLBRDDIR) \
19            -I$(INCLCMNDIR) -I$(INCLCMNDIR)/$(CPUARCH) -I$(SLOFCMNDIR)
20 LDFLAGS = -nostdlib
21
22 TARGET = ../libusb.a
23
24
25 all: $(TARGET)
26
27 SRCS =  usb-core.c usb-ohci.c usb-ehci.c usb-slof.c usb-key.c usb-hid.c \
28         usb-hub.c usb-xhci.c
29
30 OBJS = $(SRCS:%.c=%.o)
31
32 $(TARGET): $(OBJS)
33         $(AR) -rc $@ $(OBJS)
34         $(RANLIB) $@
35
36 clean:
37         $(RM) $(TARGET) $(OBJS)
38
39 distclean: clean
40         $(RM) Makefile.dep
41
42
43 # Rules for creating the dependency file:
44 depend:
45         $(RM) Makefile.dep
46         $(MAKE) Makefile.dep
47
48 Makefile.dep: Makefile
49         $(CC) -M $(CPPFLAGS) $(CFLAGS) $(SRCS) $(SRCSS) > Makefile.dep
50
51 # Include dependency file if available:
52 -include Makefile.dep