blob: a72efc5867b2a0c8f4121ea2f17a38f205717152 (
plain)
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
|
XCOMM $XFree86: xc/programs/Xserver/Xprint/ps/Imakefile,v 1.4 1999/04/17 09:08:25 dawes Exp $
XCOMM $XConsortium: Imakefile /main/2 1996/11/16 15:24:20 rws $
#include <Server.tmpl>
SRCS1 = PsInit.c PsPrint.c PsGC.c PsMisc.c PsSpans.c PsArea.c PsPixel.c \
PsLine.c PsPolygon.c PsArc.c PsText.c PsWindow.c PsFonts.c \
PsAttr.c PsAttVal.c PsColor.c PsPixmap.c psout.c
OBJS1 = PsInit.o PsPrint.o PsGC.o PsMisc.o PsSpans.o PsArea.o PsPixel.o \
PsLine.o PsPolygon.o PsArc.o PsText.o PsWindow.o PsFonts.o \
PsAttr.o PsAttVal.o PsColor.o PsPixmap.o psout.o
SRCS = $(SRCS1)
OBJS = $(OBJS1)
XCOMM DEFINES = -DPIXPRIV
DEFINES = -UXFree86LOADER
INCLUDES = -I. \
-I../../cfb \
-I../$(TOP) \
-I../../include -I.. -I$(TOP)/include \
-I$(EXTINCSRC) -I$(FONTINCSRC) \
-I$(FONTLIBSRC)/include \
-I../../mi -I../../mfb
LINTLIBS = $(TOP)/server/dix/llib-ldix.ln $(TOP)/server/os/llib-los.ln \
$(TOP)/server/ddx/mfb/llib-lmfb.ln \
$(TOP)/server/ddx/mi/llib-lmi.ln \
$(TOP)/server/ddx/cfb/llib-lcfb.ln
NormalLibraryObjectRule()
NormalLibraryTarget(ps,$(OBJS))
NormalLintTarget($(SRCS1) $(SRCS2))
DependTarget()
|