Import upstream u-boot 1.1.4
[u-boot.git] / board / MAI / bios_emulator / scitech / src / x86emu / makefile
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:   Generic makefile for the x86emu library. Requires
30 #               the SciTech Software makefile definitions package to be
31 #               installed, which uses the DMAKE make program.
32 #
33 #############################################################################
34
35 .IMPORT .IGNORE: DEBUG
36
37 #----------------------------------------------------------------------------
38 # Define the lists of object files
39 #----------------------------------------------------------------------------
40
41 OBJECTS                 = sys$O decode$O ops$O ops2$O prim_ops$O fpu$O debug$O
42 CFLAGS          += -DSCITECH
43 .IF $(DEBUG)
44 CFLAGS                  += -DDEBUG
45 .ENDIF
46 LIBCLEAN                = *.dll *.lib *.a
47 LIBFILE                 = $(LP)x86emu$L
48
49 #----------------------------------------------------------------------------
50 # Sample test programs
51 #----------------------------------------------------------------------------
52
53 all: $(LIBFILE)
54
55 validate$E: validate$O $(LIBFILE)
56
57 #----------------------------------------------------------------------------
58 # Define the list of object files to create dependency information for
59 #----------------------------------------------------------------------------
60
61 DEPEND_OBJ      =  validate$O $(OBJECTS)
62
63 .INCLUDE: "$(SCITECH)/makedefs/common.mk"