blob: 7d1217a460cb2a658101b6f3059e0dc8ed489810 (
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
|
XCOMM $Xorg: Imakefile,v 1.3 2000/08/17 19:41:45 cpqbld Exp $
XCOMM $XFree86: xc/config/Imakefile,v 1.3 2001/01/17 16:22:29 dawes Exp $
#define IHaveSubdirs
#define PassCDebugFlags CDEBUGFLAGS="$(CDEBUGFLAGS)"
#undef BootstrapCleanSubdirs
#define BootstrapCleanSubdirs BOOTSTRAPSUBDIRS="$(BOOTSTRAPSUBDIRS)"
NULL =
SUBDIRS = cf
#if defined(XorgVersionString) \
&& defined(ProjectRoot) && \
defined(BuildBindist)
all:: version
version: cf/version.def
RemoveFile(version)
#if defined (XorgVersionString)
echo XorgVersionString > version
#endif
InstallNamedNonExec(version,.$(VENDORNAMESHORT)_Version,ProjectRoot)
clean::
RemoveFile(version)
#endif
MakeSubdirs($(SUBDIRS))
DependSubdirs($(SUBDIRS))
|