From ef3115fcba3b2589f2819538dc53e597822716d5 Mon Sep 17 00:00:00 2001 From: Leandro Lucarella Date: Mon, 19 May 2003 18:23:56 +0000 Subject: [PATCH] * Added a Makefile. * Fixed some headers. * Fixed xmi2code config file. * Removed EOL from the source files. --- Doxyfile | 28 ++++++++++++++++++++++++++- Makefile | 44 ++++++++++++++++++++++++++++++++++++++++++ src/BIFE/Album.php | 2 +- src/BIFE/Container.php | 2 +- src/BIFE/Generic.php | 2 +- src/BIFE/Page.php | 2 +- src/BIFE/Parser.php | 2 +- src/BIFE/Title.php | 2 +- src/BIFE/Widget.php | 2 +- xmi2code.config | 31 ++++++++++++++++++++++++++++- 10 files changed, 108 insertions(+), 9 deletions(-) create mode 100644 Makefile diff --git a/Doxyfile b/Doxyfile index 43687c7..704aaeb 100644 --- a/Doxyfile +++ b/Doxyfile @@ -1,5 +1,31 @@ -# Doxyfile 1.3-rc3 +# vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4: +# +--------------------------------------------------------------------+ +# | BIFE - Buil It FastEr | +# +--------------------------------------------------------------------+ +# | This file is part of BIFE. | +# | | +# | BIFE is free software; you can redistribute it and/or modify it | +# | under the terms of the GNU General Public License as published by | +# | the Free Software Foundation; either version 2 of the License, or | +# | (at your option) any later version. | +# | | +# | BIFE is distributed in the hope that it will be useful, but | +# | WITHOUT ANY WARRANTY; without even the implied warranty of | +# | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | +# | General Public License for more details. | +# | | +# | You should have received a copy of the GNU General Public License | +# | along with Hooks; if not, write to the Free Software Foundation, | +# | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | +# +--------------------------------------------------------------------+ +# | Created: Mon May 19 00:16:56 ART 2003 | +# | Authors: Leandro Lucarella | +# +--------------------------------------------------------------------+ +# +# $Id$ +# +# Doxyfile 1.3-rc3 #--------------------------------------------------------------------------- # General configuration options #--------------------------------------------------------------------------- diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f9c68d3 --- /dev/null +++ b/Makefile @@ -0,0 +1,44 @@ +# vim: set expandtab tabstop=4 softtabstop=4 shiftwidth=4: +# +--------------------------------------------------------------------+ +# | BIFE - Buil It FastEr | +# +--------------------------------------------------------------------+ +# | This file is part of BIFE. | +# | | +# | BIFE is free software; you can redistribute it and/or modify it | +# | under the terms of the GNU General Public License as published by | +# | the Free Software Foundation; either version 2 of the License, or | +# | (at your option) any later version. | +# | | +# | BIFE is distributed in the hope that it will be useful, but | +# | WITHOUT ANY WARRANTY; without even the implied warranty of | +# | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | +# | General Public License for more details. | +# | | +# | You should have received a copy of the GNU General Public License | +# | along with Hooks; if not, write to the Free Software Foundation, | +# | Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | +# +--------------------------------------------------------------------+ +# | Created: Mon May 19 00:16:56 ART 2003 | +# | Authors: Leandro Lucarella | +# +--------------------------------------------------------------------+ +# +# $Id$ +# + +all: doc code + +doc: api + +api: Doxyfile src/*.php src/BIFE/*.php + doxygen + +code: doc/bife.xmi + xmi2code -a + +clean-code: + find src/ -name '*.bak' | xargs rm -vf + +clean-doc: + rm -fvR doc/api/html doc/api/rtf doc/api/latex + +clean: clean-doc clean-backup diff --git a/src/BIFE/Album.php b/src/BIFE/Album.php index 1bbc1d6..3b19ad4 100644 --- a/src/BIFE/Album.php +++ b/src/BIFE/Album.php @@ -93,4 +93,4 @@ class BIFE_Album extends BIFE_Widget { } // -X2C Class :Album -?> +?> \ No newline at end of file diff --git a/src/BIFE/Container.php b/src/BIFE/Container.php index 2339f96..d1ea194 100644 --- a/src/BIFE/Container.php +++ b/src/BIFE/Container.php @@ -59,4 +59,4 @@ class BIFE_Container extends BIFE_Widget { } // -X2C Class :Container -?> +?> \ No newline at end of file diff --git a/src/BIFE/Generic.php b/src/BIFE/Generic.php index a9baaf4..6b5258e 100644 --- a/src/BIFE/Generic.php +++ b/src/BIFE/Generic.php @@ -106,4 +106,4 @@ class BIFE_Generic extends BIFE_Container { } // -X2C Class :Generic -?> +?> \ No newline at end of file diff --git a/src/BIFE/Page.php b/src/BIFE/Page.php index f352f2c..e1d8aaa 100644 --- a/src/BIFE/Page.php +++ b/src/BIFE/Page.php @@ -56,4 +56,4 @@ class BIFE_Page extends BIFE_Generic { } // -X2C Class :Page -?> +?> \ No newline at end of file diff --git a/src/BIFE/Parser.php b/src/BIFE/Parser.php index a084a4e..001c76e 100644 --- a/src/BIFE/Parser.php +++ b/src/BIFE/Parser.php @@ -250,4 +250,4 @@ class BIFE_Parser { } // -X2C Class :Parser -?> +?> \ No newline at end of file diff --git a/src/BIFE/Title.php b/src/BIFE/Title.php index b2b0905..518ded2 100644 --- a/src/BIFE/Title.php +++ b/src/BIFE/Title.php @@ -56,4 +56,4 @@ class BIFE_Title extends BIFE_Generic { } // -X2C Class :Title -?> +?> \ No newline at end of file diff --git a/src/BIFE/Widget.php b/src/BIFE/Widget.php index cd1dd68..56ee704 100644 --- a/src/BIFE/Widget.php +++ b/src/BIFE/Widget.php @@ -57,4 +57,4 @@ results. } // -X2C Class :Widget -?> +?> \ No newline at end of file diff --git a/xmi2code.config b/xmi2code.config index 4a40768..9ef07d0 100644 --- a/xmi2code.config +++ b/xmi2code.config @@ -1,11 +1,40 @@ + +