52 lines
1.1 KiB
Plaintext
52 lines
1.1 KiB
Plaintext
XCOMM $XFree86: xc/programs/Xserver/miext/rootless/Imakefile,v 1.4 2004/03/18 07:07:11 dawes Exp $
|
|
|
|
#include <Server.tmpl>
|
|
|
|
#ifdef DarwinArchitecture
|
|
#define RootlessSafeAlpha YES
|
|
#define RootlessAcceleration YES
|
|
#else
|
|
#define RootlessSafeAlpha NO
|
|
#define RootlessAcceleration NO
|
|
#endif
|
|
|
|
#if RootlessSafeAlpha || RootlessAcceleration
|
|
#define IHaveSubdirs
|
|
#endif
|
|
|
|
#if RootlessSafeAlpha
|
|
ALPHADIRS = safeAlpha
|
|
#endif
|
|
|
|
#if RootlessAcceleration
|
|
ACCELDIRS = accel
|
|
#endif
|
|
|
|
SRCS = rootlessCommon.c \
|
|
rootlessScreen.c \
|
|
rootlessWindow.c \
|
|
rootlessGC.c \
|
|
rootlessValTree.c
|
|
|
|
OBJS = rootlessCommon.o \
|
|
rootlessScreen.o \
|
|
rootlessWindow.o \
|
|
rootlessGC.o \
|
|
rootlessValTree.o
|
|
|
|
INCLUDES = -I. -I$(SERVERSRC)/fb -I$(SERVERSRC)/mi -I$(SERVERSRC)/include \
|
|
-I$(XINCLUDESRC) -I$(FONTINCSRC) -I$(SERVERSRC)/render \
|
|
-I$(EXTINCSRC) -I$(ACCELDIRS)
|
|
|
|
NormalLibraryObjectRule()
|
|
LibraryModuleTarget(rootless,$(OBJS),.)
|
|
|
|
DependTarget()
|
|
|
|
SUBDIRS = $(ALPHADIRS) $(ACCELDIRS)
|
|
|
|
#if RootlessSafeAlpha || RootlessAcceleration
|
|
MakeSubdirs($(SUBDIRS))
|
|
DependSubdirs($(SUBDIRS))
|
|
#endif
|