blob: 6a6e02a2967deeb148bcc34bbeb50708fa49346f (
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
|
XCOMM $Xorg: Imakefile,v 1.1 2002/10/31 14:42:52 gisburn Exp $
#define IHaveSubdirs
#define PassCDebugFlags CDEBUGFLAGS="$(CDEBUGFLAGS)"
XCOMM Check if OS has /etc/profile.d/
XCOMM Note that Debian Linux does not have /etc/profile.d/
#ifndef HasEtcProfileDir
# ifdef LinuxArchitecture
# if (LinuxDistribution != LinuxDebian) || BuildFullXprintDistrib
# define HasEtcProfileDir YES
# endif
# else
# define HasEtcProfileDir NO
# endif
#endif
#if HasEtcProfileDir
SUBDIRS = init.d profile.d Xsession.d
#else
SUBDIRS = init.d Xsession.d
#endif
MakeSubdirs($(SUBDIRS))
DependSubdirs($(SUBDIRS))
|