.: Initial build system.

This commit is contained in:
ZmnSCPxj jxPCSnmZ 2020-08-22 14:33:01 +00:00
parent 058c6dd1b7
commit a613d4f901
10 changed files with 94 additions and 0 deletions

23
.gitignore vendored
View file

@ -1 +1,24 @@
clboss
*.o
*.la
*.lo
*~
*.in
*.trs
*.scan
config.status
config.h
configure
*.log
*.m4
libtool
INSTALL
Makefile
TAGS
autom4te*
m4
stamp-*
auxdir
.deps
.dirstamp
.libs

1
AUTHORS Normal file
View file

@ -0,0 +1 @@
ZmnSCPxj

19
COPYING Normal file
View file

@ -0,0 +1,19 @@
Copyright (c) 2020 ZmnSCPxj
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

2
ChangeLog Normal file
View file

@ -0,0 +1,2 @@
0.1A Initial Alpha Release

6
Makefile.am Normal file
View file

@ -0,0 +1,6 @@
bin_PROGRAMS = clboss
clboss_SOURCES = \
main.cpp
ACLOCAL_AMFLAGS = -I m4

0
NEWS Normal file
View file

1
README Symbolic link
View file

@ -0,0 +1 @@
README.md

4
README.md Normal file
View file

@ -0,0 +1,4 @@
CLBOSS The C-Lightning Node Manager
===================================
CLBOSS is an automated manager for C-Lightning forwarding nodes.

34
configure.ac Normal file
View file

@ -0,0 +1,34 @@
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([clboss], [0.1A], [ZmnSCPxj@protonmail.com])
AC_CONFIG_AUX_DIR([auxdir])
AM_INIT_AUTOMAKE([subdir-objects tar-ustar])
AC_CONFIG_SRCDIR([main.cpp])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIRS([m4])
LT_INIT
# Checks for programs.
AC_PROG_CXX
AX_CXX_COMPILE_STDCXX_11
AC_LANG([C++])
AC_PROG_AWK
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
# Checks for libraries.
AX_LIB_EV
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_CONFIG_FILES([Makefile])
AC_OUTPUT

4
main.cpp Normal file
View file

@ -0,0 +1,4 @@
int main (int argc, char **argv) {
return 0;
}