]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/MAI/bios_emulator/scitech/src/x86emu/makefile.cross
6edfd76e1991d987c1129572bba43af1f0b16553
[karo-tx-uboot.git] / board / MAI / bios_emulator / scitech / src / x86emu / makefile.cross
1 #############################################################################
2 #
3 #                                               Realmode X86 Emulator Library
4 #
5 #               Copyright (C) 1996-1999 SciTech Software, Inc.
6 #
7 #  ========================================================================
8 #
9 #  Permission to use, copy, modify, distribute, and sell this software and
10 #  its documentation for any purpose is hereby granted without fee,
11 #  provided that the above copyright notice appear in all copies and that
12 #  both that copyright notice and this permission notice appear in
13 #  supporting documentation, and that the name of the authors not be used
14 #  in advertising or publicity pertaining to distribution of the software
15 #  without specific, written prior permission.  The authors makes no
16 #  representations about the suitability of this software for any purpose.
17 #  It is provided "as is" without express or implied warranty.
18 #
19 #  THE AUTHORS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
20 #  INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
21 #  EVENT SHALL THE AUTHORS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
22 #  CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
23 #  USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
24 #  OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
25 #  PERFORMANCE OF THIS SOFTWARE.
26 #
27 #  ========================================================================
28 #
29 # Descripton:   Linux specific makefile for the x86emu library.
30 #
31 #############################################################################
32
33 TARGETLIB = libx86emu.a
34 TARGETDEBUGLIB =libx86emud.a
35
36 OBJS=\
37 decode.o \
38 fpu.o \
39 ops.o \
40 ops2.o \
41 prim_ops.o \
42 sys.o
43
44 DEBUGOBJS=debug.d \
45           decode.d \
46           fpu.d \
47           ops.d \
48           ops2.d \
49           prim_ops.d \
50           sys.d
51
52 .SUFFIXES: .d
53
54 all: $(TARGETLIB) $(TARGETDEBUGLIB)
55
56 $(TARGETLIB): $(OBJS)
57         ppc-elf32-ar rv $(TARGETLIB) $(OBJS)
58
59 $(TARGETDEBUGLIB): $(DEBUGOBJS)
60         ppc-elf32-ar rv $(TARGETDEBUGLIB) $(DEBUGOBJS)
61
62 INCS   = -I. -Ix86emu -I../../include
63 CFLAGS = -D__DRIVER__ -DFORCE_POST -D_CEXPORT= -DNO_LONG_LONG -Dprintk=printf -fsigned-char  -fomit-frame-pointer -mrelocatable -ffixed-r14 -meabi -mrelocatable -ffixed-r14 -meabi
64 CDEBUGFLAGS = -DDEBUG
65
66 .c.o:
67         ppc-elf32-gcc -g -O2 -Wall -c $(CFLAGS) $(INCS) $*.c
68
69 .c.d:
70         ppc-elf32-gcc -g -O2 -Wall -c -o$*.d $(CFLAGS) $(CDEBUGFLAGS) $(INCS) $*.c
71
72 .cpp.o:
73         ppc-elf32-gcc -c $(CFLAGS) $(INCS) $*.cpp
74
75 clean:
76         rm -f *.a *.o *.d
77
78 validate:       validate.o libx86emu.a
79         ppc-elf32-gcc -o validate validate.o -lx86emu -L.