]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/wdtimer.git/blob - docs/Module.xs
Descoping c6x big endian targets
[keystone-rtos/wdtimer.git] / docs / Module.xs
1 /******************************************************************************
2  * FILE PURPOSE: WatchdogTimer DOCS Module specification file.
3  ******************************************************************************
4  * FILE NAME: module.xs
5  *
6  * DESCRIPTION: 
7  *  This file contains the module specification for the Watchdog Timer Module Documentation .
8  *
9  * Copyright (C) 2012-2015, Texas Instruments, Inc.
10  *****************************************************************************/
12 /* Load the library utility. */
13 var libUtility = xdc.loadCapsule ("../build/buildlib.xs");
15 /**************************************************************************
16  * FUNCTION NAME : modBuild
17  **************************************************************************
18  * DESCRIPTION   :
19  *  The function is used to build all the components of the documentation
20  **************************************************************************/
21 function modBuild() 
22 {
23     /* Create the actual PROLOGUE Section for the Documentation.*/
24     Pkg.makePrologue += ".PHONY: WatchdogTimer_document_generation\n";
25     Pkg.makePrologue += "release: WatchdogTimer_document_generation\n";
26     Pkg.makePrologue += "docs/doxygen/html/index.html: WatchdogTimer_document_generation\n";
27     Pkg.makePrologue += "WatchdogTimer_document_generation::\n";
28     Pkg.makePrologue += "\t @echo -------------------------------------------------------\n";
29     Pkg.makePrologue += "\t @echo Generating WatchdogTimer Documentation\n";
30     Pkg.makePrologue += "\t doxygen docs/Doxyfile\n";
31     Pkg.makePrologue += "\t @echo WatchdogTimer Documentation Generated \n";
32     Pkg.makePrologue += "\t @echo -------------------------------------------------------\n";
34     /* Add the documentation file to the package. */
35     Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/tifooter.htm";
36     Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/tiheader.htm";
37     Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/tilogo.gif";
38     Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/titagline.gif";
39     Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/doxygen";
40     Pkg.otherFiles[Pkg.otherFiles.length++] = "docs/ReleaseNotes_WatchdogTimer.pdf";
42     if (lldInstallType == "SETUP")
43     {
44         /* Generate the ECLIPSE Plugin Generation */
45         Pkg.makePrologue += "all: eclipse_plugin_generation\n";
46         Pkg.makePrologue += "eclipse_plugin_generation:\n";
47         Pkg.makePrologue += "\t @echo -------------------------------------------------------\n";
48         Pkg.makePrologue += "\t @echo WatchdogTimer Eclipse Plugin Generation\n";
49         Pkg.makePrologue += "\t xs xdc.tools.eclipsePluginGen -o . -x ./eclipseDocs/sample.xml -c ./eclipseDocs/toc_cdoc_sample.xml\n";
50         Pkg.makePrologue += "\t @echo WatchdogTimer Eclipse Plugin Generated \n";
51         Pkg.makePrologue += "\t @echo -------------------------------------------------------\n";
52     }   
53 }