Skip to content

Commit

Permalink
Create lib/alpha where to put experimental modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
s-yata committed Nov 29, 2012
1 parent fabc933 commit c441200
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 1 deletion.
1 change: 1 addition & 0 deletions configure.ac
Expand Up @@ -40,6 +40,7 @@ AC_CHECK_LIB([rt], [clock_gettime])

AC_CONFIG_FILES([Makefile
lib/Makefile
lib/alpha/Makefile
lib/db/Makefile
lib/io/Makefile
test/Makefile])
Expand Down
3 changes: 2 additions & 1 deletion lib/Makefile.am
@@ -1,8 +1,9 @@
SUBDIRS = db io
SUBDIRS = alpha db io

lib_LTLIBRARIES = libgrnxx.la

libgrnxx_la_LIBADD = \
alpha/libgrnxx_alpha.la \
db/libgrnxx_db.la \
io/libgrnxx_io.la

Expand Down
8 changes: 8 additions & 0 deletions lib/alpha/Makefile.am
@@ -0,0 +1,8 @@
noinst_LTLIBRARIES = libgrnxx_alpha.la

libgrnxx_alpha_la_SOURCES = \
sample.cpp

libgrnxx_alpha_includedir = ${includedir}/grnxx/alpha
libgrnxx_alpha_include_HEADERS = \
sample.hpp
24 changes: 24 additions & 0 deletions lib/alpha/sample.cpp
@@ -0,0 +1,24 @@
/*
Copyright (C) 2012 Brazil, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "sample.hpp"

namespace grnxx {
namespace alpha {

} // namespace alpha
} // namespace grnxx
27 changes: 27 additions & 0 deletions lib/alpha/sample.hpp
@@ -0,0 +1,27 @@
/*
Copyright (C) 2012 Brazil, Inc.
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef GRNXX_ALPHA_SAMPLE_HPP
#define GRNXX_ALPHA_SAMPLE_HPP

namespace grnxx {
namespace alpha {

} // namespace alpha
} // namespace grnxx

#endif // GRNXX_ALPHA_SAMPLE_HPP

0 comments on commit c441200

Please sign in to comment.