Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
datadesc_usage with AIX data
[simgrid.git] / cruft / doc / Makefile.am
1 ## Process this file with automake to produce Makefile.in
2
3 # This is a blank Makefile.am for using gtk-doc.
4 # Copy this to your project's API docs directory and modify the variables to
5 # suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
6 # of using the various options.
7
8 # The name of the module, e.g. 'glib'.
9 DOC_MODULE=gras
10 TARGET_DIR = @htmldir@
11
12 # The top-level SGML file. Change it if you want.
13 DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
14
15 # The directory containing the source code. Relative to $(srcdir).
16 # gtk-doc will search all .c & .h files beneath here for inline comments
17 # documenting functions and macros.
18 DOC_SOURCE_DIR=.. 
19 #/src
20
21 # Extra options to pass to gtkdoc-scanobj or gtkdoc-scangobj.
22 SCANOBJ_OPTIONS=
23
24 # Extra options to supply to gtkdoc-scan.
25 SCAN_OPTIONS=
26
27 # Extra options to supply to gtkdoc-mkdb.
28 MKDB_OPTIONS=--sgml-mode --output-format=xml --ignore-files="ddt_parse.yy.c"
29
30 # Extra options to supply to gtkdoc-fixref.
31 FIXXREF_OPTIONS=
32
33 # Used for dependencies.
34 HFILE_GLOB=$(shell find $(top_srcdir)/src -name "*.h") \
35            $(shell find $(top_srcdir)/include -name "*.h")
36 CFILE_GLOB=$(shell find $(top_srcdir)/src -name "*.c"|grep -v ddt_parse.yy.c)
37 #CFILE_GLOB=$(top_srcdir)/src/core/*.c
38
39 # Header files to ignore when scanning.
40 IGNORE_HFILES=ddt_parse.yy.h
41
42 # Images to copy into HTML directory.
43 HTML_IMAGES =
44
45 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
46 content_files = overview.xml faq.xml
47
48 # Other files to distribute.
49 extra_files =
50
51 # CFLAGS and LDFLAGS for compiling scan program. Only needed if your app/lib
52 # contains GtkObjects/GObjects and you want to document signals and properties.
53 GTKDOC_CFLAGS =
54 GTKDOC_LIBS =
55
56 #GTKDOC_CC=$(LIBTOOL) --mode=compile $(CC)
57 #GTKDOC_LD=$(LIBTOOL) --mode=link $(CC)
58
59 # If you need to override some of the declarations, place them in the
60 # $(DOC_MODULE)-overrides.txt file and uncomment the second line here.
61 DOC_OVERRIDES =
62 #DOC_OVERRIDES = $(DOC_MODULE)-overrides.txt
63
64
65 include gtk-doc.make