File: Imakefile

package info (click to toggle)
xpilot 4.5.5beta.20031222-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 7,696 kB
  • ctags: 8,771
  • sloc: ansic: 85,922; cpp: 4,282; tcl: 3,479; sh: 1,731; makefile: 334; perl: 134
file content (31 lines) | stat: -rw-r--r-- 1,032 bytes parent folder | download | duplicates (2)
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
/* $Id: Imakefile,v 5.0 2001/04/07 20:00:56 dik Exp $ */

#include "Local.config"

MsubTargetPersistent(README.txt,README.txt.msub)
MsubDepend
AllTarget(README.txt)

/*
 * Note that we provide our own *Subdirs calls, so there's no need
 * to define IHaveSubdirs.
 */
#define PassCDebugFlags	'CDEBUGFLAGS=$(CDEBUGFLAGS)'

          SUBDIRS = doc contrib src			/* make all */
  MAKEFILESUBDIRS = doc contrib src lib			/* make Makefiles */
     CLEANSUBDIRS = doc contrib src lib			/* make clean */
       DEPSUBDIRS =     contrib src			/* make depend */
   INSTALLSUBDIRS =             src lib			/* make install */
  INCLUDESSUBDIRS =             src			/* make includes */
INSTALLMANSUBDIRS = doc					/* make install.man */
       TAGSUBDIRS =             src			/* make tag */

MakeSubdirs($(SUBDIRS))
DependSubdirs($(DEPSUBDIRS))
CleanSubdirs($(CLEANSUBDIRS))
MakefileSubdirs($(MAKEFILESUBDIRS))
IncludesSubdirs($(INCLUDESSUBDIRS))
InstallSubdirs($(INSTALLSUBDIRS))
InstallManSubdirs($(INSTALLMANSUBDIRS))
CtagSubdirs($(TAGSUBDIRS))