1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
XCOMM $XConsortium: Imakefile,v 1.3 93/09/20 13:17:27 rws Exp $
XCOMM
XCOMM Copyright 1993,94 by Thomas Roell, Germany.
XCOMM Copyright 1993,94 by SGCS (Snitily Graphics Consulting Services), USA.
XCOMM
XCOMM Permission to use, copy, modify, distribute, and sell this software
XCOMM and its documentation for any purpose is hereby granted without fee,
XCOMM provided that the above copyright notice appear in all copies and
XCOMM that both that copyright notice and this permission notice appear
XCOMM in supporting documentation, and that the name of Thomas Roell nor
XCOMM SGCS be used in advertising or publicity pertaining to distribution
XCOMM of the software without specific, written prior permission.
XCOMM Thomas Roell nor SGCS makes no representations about the suitability
XCOMM of this software for any purpose. It is provided "as is" without
XCOMM express or implied warranty.
XCOMM
XCOMM THOMAS ROELL AND SGCS DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS
XCOMM SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
XCOMM FITNESS, IN NO EVENT SHALL THOMAS ROELL OR SGCS BE LIABLE FOR ANY
XCOMM SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
XCOMM RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF
XCOMM CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
XCOMM CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
XCOMM
XCOMM $SGCSId$
XCOMM
#include <Server.tmpl>
#define IHaveSubdirs
SUBDIRS = config
SRCS = svgaBank.c svgaColor.c svgaFb.c svgaInit.c svgaIo.c svgaKbd.c \
svgaSVPMI.c svgaVT.c
#if NeedSvga386
ASOBJ = svga398.o
#endif
#ifndef SvgaDir
#define SvgaDir $(LIBDIR)/svga
#endif
VGADIR = SvgaDir
#ifndef SvgaConfig
#define SvgaConfig vga.pmi:640x480
#endif
SVGACONFIG = SvgaConfig
CONF_DEFINES = -DSVGACONFIG=\"$(VGADIR)/$(SVGACONFIG)\"
OBJS = svgaBank.o svgaColor.o svgaFb.o svgaInit.o svgaIo.o svgaKbd.o \
svgaSVPMI.o svgaVT.o $(ASOBJ)
INCLUDES = -I. -I../../mi -I../../mfb -I../../cfb -I../../include -I../../os \
-I$(INCLUDESRC) -I$(FONTINCSRC)
DEFINES = -DPSZ=8
NormalRelocatableTarget(svga,$(OBJS))
NormalLintTarget($(SRCS))
SpecialCObjectRule(svgaInit,$(ICONFIGFILES),$(CONF_DEFINES))
DependTarget()
DependSubdirs($(SUBDIRS))
|