Update of /cvsroot/gtk2hs/gtk2hs/tools/apiGen
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32311/tools/apiGen
Modified Files:
Makefile
Log Message:
Update the Makefile with the new source files.
Also add a module prefix when generating gtk modules.
Index: Makefile
===================================================================
RCS file: /cvsroot/gtk2hs/gtk2hs/tools/apiGen/Makefile,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- Makefile 28 Jan 2005 18:08:46 -0000 1.4
+++ Makefile 5 Feb 2005 03:02:06 -0000 1.5
@@ -76,7 +76,8 @@
gdk-api.xml pango-api.xml atk-api.xml
@mkdir -p $@
./ApiGen $< Template.chs --doc=gtk-docs.xml --outdir=$@ \
- --includeapi=gdk-api.xml --includeapi=pango-api.xml --includeapi=atk-api.xml
+ --includeapi=gdk-api.xml --includeapi=pango-api.xml --includeapi=atk-api.xml \
+ --modprefix=Graphics.UI.Gtk.{-Category-}
###################
@@ -130,7 +131,8 @@
#
# tools
#
-ApiGen : ApiGen.hs
+ApiGen : ApiGen.hs Api.hs Docs.hs FormatDocs.hs \
+ Marshal.hs CodeGen.hs StringUtils.hs
ghc --make $< -o $@
gapi_format_xml : formatXml.c
|