mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-03-09 15:50:02 +00:00
The following font families (or their aliases) will be used: -adobe-courier-bold-o-normal--*- -adobe-courier-bold-r-normal--*- -adobe-courier-medium-o-normal--*- -adobe-courier-medium-r-normal--*- -adobe-helvetica-bold-o-normal--*- -adobe-helvetica-bold-r-normal--*- -adobe-helvetica-medium-o-normal--*- -adobe-helvetica-medium-r-normal--*- -adobe-symbol-medium-r-normal--*- -adobe-times-bold-i-normal--*- -adobe-times-bold-r-normal--*- -adobe-times-medium-i-normal--*- -adobe-times-medium-r-normal--*- -b&h-lucidasans-medium-r-normal-sans-*- -b&h-lucidatypewriter-bold-r-normal-sans-*- -b&h-lucidatypewriter-medium-r-normal-sans-*- The files will be installed in /usr/dt/config/xfonts/C This directory should be added to the X server font path: xset fp+ /usr/dt/config/xfonts/C and/or via FontPath "/usr/dt/config/xfonts/C" in the "Files" section of the xorg.conf file.
35 lines
680 B
Text
35 lines
680 B
Text
XCOMM $XConsortium: Imakefile /main/4 1996/09/13 17:25:20 drk $
|
|
|
|
/* Unknown architectures will undefine IHaveSubdirs below... */
|
|
#define IHaveSubdirs
|
|
#define PassCDebugFlags /**/
|
|
|
|
#if defined(HPArchitecture)
|
|
SUBDIRS = hp
|
|
#elif defined(AIXArchitecture)
|
|
SUBDIRS = ibm
|
|
#elif defined(SunArchitecture)
|
|
SUBDIRS = sun
|
|
#elif defined(FreeBSDArchitecture)
|
|
SUBDIRS = freebsd
|
|
#elif defined(USLArchitecture)
|
|
SUBDIRS = novell
|
|
#elif defined(UXPArchitecture)
|
|
SUBDIRS = uxp
|
|
#elif defined(AlphaArchitecture)
|
|
SUBDIRS = dec
|
|
#else
|
|
# undef IHaveSubdirs
|
|
#endif
|
|
|
|
#ifdef IHaveSubdirs
|
|
|
|
MakeSubdirs($(SUBDIRS))
|
|
DependSubdirs($(SUBDIRS))
|
|
|
|
#else /* IHaveSubdirs */
|
|
|
|
all::
|
|
depend::
|
|
|
|
#endif /* IHaveSubdirs */
|