blob: 61b5a0a3ccf1242e0ecf9c21a6c61491b8c1e8e4 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
XCOMM $XConsortium: Imakefile /main/8 1996/09/28 16:56:19 rws $
XCOMM $XFree86: xc/programs/Xserver/XIE/mixie/jpeg/Imakefile,v 3.5 1998/07/25 08:05:11 dawes Exp $
XCOMM build device dependent machine independent fax processing element objects
#define IHaveModules
#include <Server.tmpl>
SRCS = jcdeflts.c \
jcexpand.c \
jchuff.c \
jcmcu.c \
jcsample.c \
jcxie.c \
jcxief.c \
jdbuffer.c \
jddeflts.c \
jdhuff.c \
jdlossy.c \
jdmcu.c \
jdsample.c \
jdxie.c \
jdxief.c \
jelossy.c \
jfwddct.c \
jmemmgr.c \
jmemsys.c \
jrdjfif.c \
jrevdct.c \
jutils.c \
jwrjfif.c
OBJS = jcdeflts.o \
jcexpand.o \
jchuff.o \
jcmcu.o \
jcsample.o \
jcxie.o \
jcxief.o \
jdbuffer.o \
jddeflts.o \
jdhuff.o \
jdlossy.o \
jdmcu.o \
jdsample.o \
jdxie.o \
jdxief.o \
jelossy.o \
jfwddct.o \
jmemmgr.o \
jmemsys.o \
jrdjfif.o \
jrevdct.o \
jutils.o \
jwrjfif.o
INCLUDES = -I../include -I../../include -I$(SERVERSRC)/include -I$(XINCLUDESRC) -I$(XINCLUDESRC)/extensions -I../jpeg
LINTLIBS = ../../dixie/export/llib-lexp.ln ../../dixie/import/llib-limp.ln \
../../dixie/process/llib-lproc.ln ../../dixie/request/llib-lreq.ln \
../control/llib-lctrl.ln ../export/llib-lmexp.ln ../fax/llib-lfax.ln \
../import/llib-lmimp.ln ../jpeg/llib-ljpeg.ln ../process/llib-lmproc.ln
ModuleObjectRule()
SubdirLibraryRule($(OBJS))
LintLibraryTarget(jpeg,$(SRCS))
NormalLintTarget($(SRCS))
DependTarget()
|