Commit 5d160461 authored by Mike Gabriel's avatar Mike Gabriel

Xserver/dix/Imakefile: Serialize parameters and make Imakefile changes more trackable.

parent 9df15366
XCOMM $Xorg: Imakefile,v 1.3 2000/08/17 19:48:16 cpqbld Exp $
XCOMM $XFree86: xc/programs/Xserver/dix/Imakefile,v 3.17 2003/04/15 18:30:43 alanh Exp $
NULL =
#include <Server.tmpl>
XPSRC = xpstubs.c
......@@ -15,18 +13,70 @@ FFS_SRC = ffs.c
FFS_OBJ = ffs.o
#endif
SRCS = atom.c colormap.c cursor.c devices.c dispatch.c dixutils.c events.c \
extension.c gc.c globals.c glyphcurs.c grabs.c \
main.c property.c region.c resource.c swaprep.c swapreq.c \
tables.c window.c initatoms.c dixfonts.c privates.c pixmap.c $(FFS_SRC)
OBJS = atom.o colormap.o cursor.o devices.o dispatch.o dixutils.o events.o \
extension.o gc.o globals.o glyphcurs.o grabs.o \
main.o property.o region.o resource.o swaprep.o swapreq.o \
tables.o window.o initatoms.o dixfonts.o privates.o pixmap.o $(FFS_OBJ)
INCLUDES = -I../include -I$(XINCLUDESRC) -I$(EXTINCSRC) \
-I$(SERVERSRC)/Xext -I$(SERVERSRC)/lbx \
`pkg-config --cflags-only-I pixman-1`
SRCS = \
atom.c \
colormap.c \
cursor.c \
devices.c \
dispatch.c \
dixutils.c \
events.c \
extension.c \
gc.c \
globals.c \
glyphcurs.c \
grabs.c \
main.c \
property.c \
region.c \
resource.c \
swaprep.c \
swapreq.c \
tables.c \
window.c \
initatoms.c \
dixfonts.c \
privates.c \
pixmap.c \
$(FFS_SRC) \
$(NULL)
OBJS = \
atom.o \
colormap.o \
cursor.o \
devices.o \
dispatch.o \
dixutils.o \
events.o \
extension.o \
gc.o \
globals.o \
glyphcurs.o \
grabs.o \
main.o \
property.o \
region.o \
resource.o \
swaprep.o \
swapreq.o \
tables.o \
window.o \
initatoms.o \
dixfonts.o \
privates.o \
pixmap.o \
$(FFS_OBJ) \
$(NULL)
INCLUDES = -I../include \
-I$(XINCLUDESRC) \
-I$(EXTINCSRC) \
-I$(SERVERSRC)/Xext \
-I$(SERVERSRC)/lbx \
`pkg-config --cflags-only-I pixman-1` \
$(NULL)
LINTLIBS = ../os/llib-los.ln
/*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment