📄 project.tmpl
字号:
XCOMM -------------------------------------------------------------------------XCOMM X Window System Build ParametersXCOMM $XConsortium: Project.tmpl,v 1.138.1.1 92/11/11 09:49:19 rws Exp $/***************************************************************************** * * * DEFAULT DEFINITONS * * * * The following section contains defaults for things that can be overridden * * in the various *.cf and site.def files. DO NOT EDIT! * * * ****************************************************************************/#ifndef ManDirectoryRoot#ifdef ProjectRoot#define ManDirectoryRoot Concat(ProjectRoot,/man)#else#if SystemV4#define ManDirectoryRoot /usr/share/man#else#define ManDirectoryRoot /usr/man#endif#endif#endif#ifndef ManSuffix#define ManSuffix n /* use just one tab or cpp will die */#endif#ifndef LibManSuffix#define LibManSuffix 3 /* use just one tab or cpp will die */#endif#ifndef BinDir#ifdef ProjectRoot#define BinDir Concat(ProjectRoot,/bin)#else#define BinDir /usr/local/bin#endif#endif#ifndef ConfigDir#define ConfigDir $(USRLIBDIR)/config/DP#endif#ifndef LintlibDir#define LintlibDir $(USRLIBDIR)/lint#endif#ifndef ManPath#define ManPath ManDirectoryRoot#endif#ifndef ManSourcePath#define ManSourcePath $(MANPATH)/man#endif#ifndef ManDir#define ManDir $(MANSOURCEPATH)$(MANSUFFIX)#endif#ifndef LibmanDir#define LibmanDir $(MANSOURCEPATH)$(LIBMANSUFFIX)#endif#ifndef UseCCMakeDepend /* use slow cc -E script */#define UseCCMakeDepend NO#endif#ifndef DependDir#if UseCCMakeDepend#define DependDir $(SCRIPTSRC)#else#define DependDir $(UTILSRC)/makedepend#endif#endif#ifndef DependCmd#define DependCmd $(DEPENDSRC)/makedepend#endif#ifndef RemoveTargetProgramByMoving#define RemoveTargetProgramByMoving NO#endif#ifndef AllocateLocalDefines#define AllocateLocalDefines /**/#endif#ifndef ForceNormalLib#define ForceNormalLib (HasSaberC | HasGcc)#endifXCOMM -------------------------------------------------------------------------XCOMM X Window System make variables; this need to be coordinated with rules/* * This list must be reflected in the DIRS_TO_BUILD list in the top-level * Makefile. */ PATHSEP = / /* for building filenames */ USRLIBDIR = UsrLibDir /* libraries */ BINDIR = BinDir /* programs */ INCROOT = IncRoot /* base of where to put header files */ CONFIGDIR = ConfigDir /* build configuration information */ LINTLIBDIR = LintlibDir /* lint libraries */ MANPATH = ManPath /* top of manual page tree */ MANSOURCEPATH = ManSourcePath /* prefix for man page sources */ MANSUFFIX = ManSuffix /* suffix for man pages */ LIBMANSUFFIX = LibManSuffix /* suffix for library man pages */ MANDIR = ManDir /* man pages for commands */ LIBMANDIR = LibmanDir /* man pages for library routines */ IMAKE = imake /* assume publicly installed */ DEPEND = makedepend /* ditto */ MKDIRHIER = mkdirhier /* ditto */ CONFIGSRC = $(TOP)/config DEPENDSRC = DependDir IMAKESRC = $(CONFIGSRC)/* * _Use - makes a choice based on UseInstalled. */#ifndef _Use#ifdef UseInstalled#define _Use(a,b) a#else#define _Use(a,b) b#endif#endif/* * _UseCat - combination of _Use and Concat. * exists to avoid problems with some preprocessors */#ifndef _UseCat#if __STDC__ && !defined(UnixCpp)#ifdef UseInstalled#define _UseCat(a,b,c) a##c#else#define _UseCat(a,b,c) b##c#endif#else#ifdef UseInstalled#define _UseCat(a,b,c) a/**/c#else#define _UseCat(a,b,c) b/**/c#endif#endif#endif/* leave these but give all blank values */ DEPLIBS = DEPLIBS1 = DEPLIBS2 = DEPLIBS3 =
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -