~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/SLOF/lib/libveth/Makefile

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
CPPFLAGS = -I../libc/include $(CPUARCHDEF) -I$(INCLBRDDIR) \
 
18
           -I$(INCLCMNDIR) -I$(INCLCMNDIR)/$(CPUARCH)
 
19
CPPFLAGS += -I../libhvcall
 
20
 
 
21
LDFLAGS = -nostdlib
 
22
 
 
23
TARGET = ../libveth.a
 
24
 
 
25
 
 
26
all: $(TARGET)
 
27
 
 
28
SRCS =  veth.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