29 lines
733 B
Plaintext
29 lines
733 B
Plaintext
XCOMM $TOG: Imakefile /main/5 1997/03/05 11:10:37 damon $
|
|
#define IHaveSubdirs
|
|
#define PassCDebugFlags
|
|
|
|
/* due to split-VOB setup, force help to come last in make Makefiles */
|
|
#if defined(LinuxArchitecture) || defined(BSDArchitecture)
|
|
XCOMM we cannot build guides on linux yet
|
|
SUBDIRS = help
|
|
BSUBDIRS = help
|
|
#else
|
|
SUBDIRS = guides m-guides help
|
|
BSUBDIRS = help guides m-guides
|
|
#endif
|
|
XCOMM work around local clearcase vobs setup
|
|
MakeDirectories(all,help-sdl cde.dti)
|
|
|
|
XCOMM We need to build Motif documentation as part of CDE
|
|
MakeDirectories(Makefiles,m-guides)
|
|
Makefiles::
|
|
$(RM) m-guides/?*; \
|
|
cd m-guides; \
|
|
$(LN) ../$(MDOCSRC)/ja_JP.dt-eucJP/guides/?* .; \
|
|
cd ..
|
|
|
|
MakeSubdirs($(BSUBDIRS))
|
|
|
|
clean::
|
|
$(RM) -r help-sdl cde.dti
|