summaryrefslogtreecommitdiff
path: root/web/glasgow/lit2x-0.16/mkworld/plat-DEF.ljm
blob: a4d1051222e180418d85101161fca763dbba5dad (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
%************************************************************************
%*									*
\section[mkworld-plat-GEN]{{\em Defaults} for platform-specific things}
%*									*
%************************************************************************

\begin{code}
#ifndef OSMajorVersion
#define OSMajorVersion		0
#endif
#ifndef OSMinorVersion
#define OSMinorVersion		0
#endif

#ifndef HasExecableScripts
#define HasExecableScripts	YES	/* can execute scripts with #! */
#endif

#ifndef ConstructMFLAGS
#define ConstructMFLAGS		NO	/* build MFLAGS from MAKEFLAGS */
#endif
#if ConstructMFLAGS
MFLAGS = -$(MAKEFLAGS)
#endif

#ifndef BourneShell			/* to force shell in Makefile */
#define BourneShell	/bin/sh
#endif
SHELL = BourneShell
\end{code}

Have System V-ish \tr{times.h}, with \tr{times} routine, rather than
Berkeley-style \tr{time.h} with \tr{ftime}, etc.
\begin{code}
#ifndef CppHaveSysVishTimesH
#define CppHaveSysVishTimesH /*nothing*/
#endif
\end{code}