mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-15 04:32:24 +00:00
doc/C: Add makefiles
This commit is contained in:
parent
f2efbbce70
commit
afd95a6ad8
6 changed files with 2912 additions and 0 deletions
13
cde/doc/C/Makefile.am
Normal file
13
cde/doc/C/Makefile.am
Normal file
|
@ -0,0 +1,13 @@
|
|||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
all:
|
||||
$(MKDIR_P) help-sdl
|
||||
$(MKDIR_P) cde.dti
|
||||
$(MKDIR_P) m-guides/common
|
||||
$(LN_S) ../../guides/common/ManLinksMotif.sgm \
|
||||
m-guides/common/ManLinks.sgm
|
||||
|
||||
SUBDIRS = man guides help
|
||||
|
||||
clean::
|
||||
$(RM) -r help-sdl cde.dti
|
20
cde/doc/C/help/Makefile.am
Normal file
20
cde/doc/C/help/Makefile.am
Normal file
|
@ -0,0 +1,20 @@
|
|||
include ../../../programs/localized/templates/C.tmpl
|
||||
include ../../common/help/Appmanager.tmpl
|
||||
include ../../common/help/AppBuilder.tmpl
|
||||
include ../../common/help/Calculator.tmpl
|
||||
include ../../common/help/Calendar.tmpl
|
||||
include ../../common/help/CreatAct.tmpl
|
||||
include ../../common/help/FPanel.tmpl
|
||||
include ../../common/help/Filemgr.tmpl
|
||||
include ../../common/help/Help4Help.tmpl
|
||||
include ../../common/help/Iconed.tmpl
|
||||
include ../../common/help/Infomgr.tmpl
|
||||
include ../../common/help/Intromgr.tmpl
|
||||
include ../../common/help/LibDtPrint.tmpl
|
||||
include ../../common/help/Loginmgr.tmpl
|
||||
include ../../common/help/Mailer.tmpl
|
||||
include ../../common/help/Printmgr.tmpl
|
||||
include ../../common/help/PrnSetup.tmpl
|
||||
include ../../common/help/Stylemgr.tmpl
|
||||
include ../../common/help/Terminal.tmpl
|
||||
include ../../common/help/Textedit.tmpl
|
2843
cde/doc/C/man/Makefile.am
Normal file
2843
cde/doc/C/man/Makefile.am
Normal file
File diff suppressed because it is too large
Load diff
3
cde/doc/C/man/manalias.tmpl
Normal file
3
cde/doc/C/man/manalias.tmpl
Normal file
|
@ -0,0 +1,3 @@
|
|||
$(ALIASTARGET):
|
||||
$(RM) $@
|
||||
echo .so $(ALIASSRC) > $@
|
3
cde/doc/C/man/manpage.tmpl
Normal file
3
cde/doc/C/man/manpage.tmpl
Normal file
|
@ -0,0 +1,3 @@
|
|||
$(MANTARGET): $(MANSRC) cdedecl.sgm ../guides/man/SEntity.sgm ../guides/common/ManLinks.sgm ../m-guides/common/ManLinks.sgm
|
||||
$(RM) $@
|
||||
$(DBENVSETUP) $(KSH) $(DBTOMAN) $(DBOPTS) cdedecl.sgm $(MANSRC) $@
|
30
cde/doc/Makefile.am
Normal file
30
cde/doc/Makefile.am
Normal file
|
@ -0,0 +1,30 @@
|
|||
MAINTAINERCLEANFILES = Makefile.in
|
||||
|
||||
SUBDIRS = util C
|
||||
|
||||
if JAPANESE
|
||||
SUBDIRS += ja_JP.dt-eucJP
|
||||
endif
|
||||
|
||||
if GERMAN
|
||||
SUBDIRS += de_DE.ISO8859-1
|
||||
endif
|
||||
|
||||
if FRENCH
|
||||
SUBDIRS += fr_FR.ISO8859-1
|
||||
endif
|
||||
|
||||
if SPANISH
|
||||
SUBDIRS += es_ES.ISO8859-1
|
||||
endif
|
||||
|
||||
if ITALIAN
|
||||
SUBDIRS = it_IT.ISO8859-1
|
||||
endif
|
||||
|
||||
all::
|
||||
$(RM) -r tmp
|
||||
$(MKDIR_P) tmp
|
||||
|
||||
clean::
|
||||
$(RM) -r tmp
|
Loading…
Reference in a new issue