~ubuntu-branches/ubuntu/gutsy/vnc4/gutsy

« back to all changes in this revision

Viewing changes to unix/xc/extras/x86emu/src/x86emu/makefile.linux

  • Committer: Bazaar Package Importer
  • Author(s): Ola Lundqvist
  • Date: 2006-05-15 20:35:17 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060515203517-l4lre1ku942mn26k
Tags: 4.1.1+X4.3.0-10
* Correction of critical security issue. Thanks to Martin Kogler
  <e9925248@student.tuwien.ac.at> that informed me about the issue,
  and provided the patch.
  This flaw was originally found by Steve Wiseman of intelliadmin.com.
* Applied patch from Javier Kohen <jkohen@users.sourceforge.net> that
  inform the user that only 8 first characters of the password will
  actually be used when typing more than 8 characters, closes:
  #355619.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
 
 
35
OBJS=\
 
36
debug.o \
 
37
decode.o \
 
38
fpu.o \
 
39
ops.o \
 
40
ops2.o \
 
41
prim_ops.o \
 
42
sys.o
 
43
 
 
44
$(TARGETLIB): $(OBJS)
 
45
        ar rv $(TARGETLIB) $(OBJS)
 
46
 
 
47
INCS   = -I. -Ix86emu -I../../include
 
48
CFLAGS = -D__DRIVER__ -DFORCE_POST -D_CEXPORT= -DNO_LONG_LONG -DDEBUG
 
49
 
 
50
.c.o:
 
51
        gcc -g -O -Wall -c $(CFLAGS) $(INCS) $*.c
 
52
 
 
53
.cpp.o:
 
54
        gcc -c $(CFLAGS) $(INCS) $*.cpp
 
55
 
 
56
clean:
 
57
        rm -f *.a *.o
 
58
 
 
59
validate:       validate.o libx86emu.a
 
60
        gcc -o validate validate.o -lx86emu -L.