------------------------------------------------------------ revno: 937 committer: Roger Martin <[email protected]> branch nick: aikiframework timestamp: Sun 2011-11-13 23:07:59 +0100 message: installation works added: src/libs/classes/Makefile.am modified: configure.ac src/assets/apps/Makefile.am
-- lp:aikiframework https://code.launchpad.net/~aikiframework-devel/aikiframework/trunk Your team Aiki Framework Developers is subscribed to branch lp:aikiframework. To unsubscribe from this branch go to https://code.launchpad.net/~aikiframework-devel/aikiframework/trunk/+edit-subscription
=== modified file 'configure.ac' --- configure.ac 2011-11-13 21:42:33 +0000 +++ configure.ac 2011-11-13 22:07:59 +0000 @@ -589,6 +589,7 @@ src/assets/uploads/Makefile \ src/libs/archive/Makefile \ src/libs/backup/Makefile \ + src/libs/classes/Makefile \ src/libs/database/Makefile \ src/libs/file/Makefile \ src/libs/session/Makefile \ === modified file 'src/assets/apps/Makefile.am' --- src/assets/apps/Makefile.am 2011-11-08 13:42:45 +0000 +++ src/assets/apps/Makefile.am 2011-11-13 22:07:59 +0000 @@ -23,13 +23,11 @@ # Subdirectories to be built SUBDIRS = \ - admin \ - installer + admin # Subdirectories to distribute DIST_SUBDIRS = \ - admin \ - installer + admin # Additional files to distribute EXTRA_DIST = \ === added file 'src/libs/classes/Makefile.am' --- src/libs/classes/Makefile.am 1970-01-01 00:00:00 +0000 +++ src/libs/classes/Makefile.am 2011-11-13 22:07:59 +0000 @@ -0,0 +1,35 @@ +# Process this file with automake to produce Makefile.in -*-Makefile-*- + +# Copyright (c) 2010-2011 Aiki Lab Pte Ltd + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as +# published by the Free Software Foundation, either version 3 of the +# License, or (at your option) any later version. + +# This program 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 Affero General Public License for more details. + +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +# Written by Steven Garcia + +# The source files +aiki_src_files = \ + dictionaryArrayClass.php \ + dictionaryTableClass.php + +# Additional files to distribute +EXTRA_DIST = \ + $(aiki_src_files) + +# The directory to put the files +aiki_srcdir = \ + $(pkgdatadir)/libs/classes + +# The source data +aiki_src_DATA = \ + $(aiki_src_files) \ No newline at end of file
_______________________________________________ Mailing list: https://launchpad.net/~aikiframework-devel Post to : [email protected] Unsubscribe : https://launchpad.net/~aikiframework-devel More help : https://help.launchpad.net/ListHelp

