Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / SLOF / lib / libbcm / Makefile
1 # *****************************************************************************
2 # * Copyright (c) 2004, 2008, 2013 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 CPPFLAGS = -I../libc/include $(CPUARCHDEF) -I$(INCLBRDDIR) \
18            -I$(INCLCMNDIR) -I$(INCLCMNDIR)/$(CPUARCH)
19
20 #CFLAGS += -O2 -I. -I../common -I$(TOP)/clients/net-snk/include -I$(TOP)/lib/libc/include -fno-builtin -ffreestanding -msoft-float -Wall -nostdinc
21
22 LDFLAGS = -nostdlib
23
24 TARGET = ../libbcm.a
25
26
27 all: $(TARGET) Makefile.dep
28
29 SRCS =  bcm57xx.c
30
31 OBJS = $(SRCS:%.c=%.o)
32
33 $(TARGET): $(OBJS)
34         $(AR) -rc $@ $(OBJS)
35         $(RANLIB) $@
36
37 clean:
38         $(RM) $(TARGET) $(OBJS)
39
40 distclean: clean
41         $(RM) Makefile.dep
42
43
44 # Rules for creating the dependency file:
45 depend:
46         $(RM) Makefile.dep
47         $(MAKE) Makefile.dep
48
49 Makefile.dep: Makefile
50         $(CC) -M $(CPPFLAGS) $(CFLAGS) $(SRCS) $(SRCSS) > Makefile.dep
51
52 # Include dependency file if available:
53 -include Makefile.dep