Home | History | Annotate | Download | only in MixAudio
      1 #INTEL CONFIDENTIAL
      2 #Copyright 2009 Intel Corporation All Rights Reserved. 
      3 #The source code contained or described herein and all documents related to the source code ("Material") are owned by Intel Corporation or its suppliers or licensors. Title to the Material remains with Intel Corporation or its suppliers and licensors. The Material contains trade secrets and proprietary and confidential information of Intel or its suppliers and licensors. The Material is protected by worldwide copyright and trade secret laws and treaty provisions. No part of the Material may be used, copied, reproduced, modified, published, uploaded, posted, transmitted, distributed, or disclosed in any way without Intels prior express written permission.
      4 
      5 #No license under any patent, copyright, trade secret or other intellectual property right is granted to or conferred upon you by disclosure or delivery of the Materials, either expressly, by implication, inducement, estoppel or otherwise. Any license under such intellectual property rights must be express and approved by Intel in writing.
      6 #
      7 
      8 
      9 ## Process this file with automake to produce Makefile.in
     10 
     11 # We require automake 1.6 at least.
     12 AUTOMAKE_OPTIONS = 1.6
     13 
     14 # This is a blank Makefile.am for using gtk-doc.
     15 # Copy this to your project's API docs directory and modify the variables to
     16 # suit your project. See the GTK+ Makefiles in gtk+/docs/reference for examples
     17 # of using the various options.
     18 
     19 # The name of the module, e.g. 'glib'.
     20 DOC_MODULE=MixAudio
     21 
     22 # The top-level SGML file. You can change this if you want to.
     23 DOC_MAIN_SGML_FILE=$(DOC_MODULE)-docs.sgml
     24 
     25 # The directory containing the source code. Relative to $(srcdir).
     26 # gtk-doc will search all .c & .h files beneath here for inline comments
     27 # documenting the functions and macros.
     28 # e.g. DOC_SOURCE_DIR=../../../gtk
     29 DOC_SOURCE_DIR=$(top_srcdir)/src
     30 
     31 # Extra options to pass to gtkdoc-scangobj. Not normally needed.
     32 #SCANGOBJ_OPTIONS=--type-init-func="g_init(NULL,NULL)"
     33 
     34 # Extra options to supply to gtkdoc-scan.
     35 # e.g. SCAN_OPTIONS=--deprecated-guards="GTK_DISABLE_DEPRECATED"
     36 SCAN_OPTIONS=--rebuild-sections --rebuild-types
     37 #SCAN_OPTIONS=--rebuild-sections
     38 
     39 # Extra options to supply to gtkdoc-mkdb.
     40 # e.g. MKDB_OPTIONS=--sgml-mode --output-format=xml
     41 MKDB_OPTIONS=--sgml-mode --output-format=xml
     42 
     43 # Extra options to supply to gtkdoc-mktmpl
     44 # e.g. MKTMPL_OPTIONS=--only-section-tmpl
     45 MKTMPL_OPTIONS=
     46 
     47 # Extra options to supply to gtkdoc-fixref. Not normally needed.
     48 # e.g. FIXXREF_OPTIONS=--extra-dir=../gdk-pixbuf/html --extra-dir=../gdk/html
     49 FIXXREF_OPTIONS=
     50 
     51 # Used for dependencies. The docs will be rebuilt if any of these change.
     52 # e.g. HFILE_GLOB=$(top_srcdir)/gtk/*.h
     53 # e.g. CFILE_GLOB=$(top_srcdir)/gtk/*.c
     54 HFILE_GLOB=$(top_srcdir)/src/*.h
     55 CFILE_GLOB=$(top_srcdir)/src/*.c
     56 
     57 # Header files to ignore when scanning.
     58 # e.g. IGNORE_HFILES=gtkdebug.h gtkintl.h
     59 IGNORE_HFILES=*~ intel_sst_ioctl.h pvt.h sst_proxy.h amhelper.h
     60 
     61 # Images to copy into HTML directory.
     62 # e.g. HTML_IMAGES=$(top_srcdir)/gtk/stock-icons/stock_about_24.png
     63 HTML_IMAGES=
     64 
     65 # Extra SGML files that are included by $(DOC_MAIN_SGML_FILE).
     66 # e.g. content_files=running.sgml building.sgml changes-2.0.sgml
     67 content_files=
     68 
     69 # SGML files where gtk-doc abbrevations (#GtkWidget) are expanded
     70 # These files must be listed here *and* in content_files
     71 # e.g. expand_content_files=running.sgml
     72 expand_content_files=
     73 
     74 # CFLAGS and LDFLAGS for compiling gtkdoc-scangobj with your library.
     75 # Only needed if you are using gtkdoc-scangobj to dynamically query widget
     76 # signals and properties.
     77 # e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
     78 # e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
     79 AM_CFLAGS=$(GLIB_CFLAGS) $(GOBJECT_CFLAGS) $(MIXCOMMON_CFLAGS)
     80 GTKDOC_LIBS=$(GLIB_LIBS) $(GOBJECT_LIBS) $(MIXCOMMON_LIBS) $(top_srcdir)/src/libmixaudio.la
     81 
     82 # This includes the standard gtk-doc make rules, copied by gtkdocize.
     83 include $(top_srcdir)/gtk-doc.make
     84 
     85 # Other files to distribute
     86 # e.g. EXTRA_DIST += version.xml.in
     87 EXTRA_DIST +=
     88 
     89 # Files not to distribute
     90 # for --rebuild-types in $(SCAN_OPTIONS), e.g. $(DOC_MODULE).types
     91 # for --rebuild-sections in $(SCAN_OPTIONS) e.g. $(DOC_MODULE)-sections.txt
     92 #DISTCLEANFILES =
     93 
     94 # Comment this out if you want your docs-status tested during 'make check'
     95 #TESTS = $(GTKDOC_CHECK)
     96 
     97