12345678910111213141516171819202122232425262728 |
- XCOMM $XConsortium: Imakefile /main/10 1996/07/23 22:00:00 rws $
- #define IHaveSubdirs
- #define PassCDebugFlags
- /* due to split-VOB setup, force help to come last in make Makefiles */
- SUBDIRS = man guides m-guides help
- BSUBDIRS = help man guides m-guides
- 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) -r m-guides/?*; \
- cd m-guides; \
- if test -f ../$(MDOCSRC)/C/guides/bookcase.bc; \
- then $(LN) ../$(MDOCSRC)/C/guides/?* .; \
- else $(CP) /dev/null ./Imakefile; \
- $(MKDIRHIER) ./common; \
- $(LN) ../../guides/common/ManLinksMotif.sgm common/ManLinks.sgm; \
- fi; \
- cd ..
- MakeSubdirs($(BSUBDIRS))
- clean::
- $(RM) -r help-sdl cde.dti
|