diff --git a/.gitignore b/.gitignore index 2fff901..e3fc04c 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..4b76d4c --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +ZmnSCPxj diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..74a3890 --- /dev/null +++ b/COPYING @@ -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. diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..8262cd8 --- /dev/null +++ b/ChangeLog @@ -0,0 +1,2 @@ + +0.1A Initial Alpha Release diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..587c2b2 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,6 @@ +bin_PROGRAMS = clboss + +clboss_SOURCES = \ + main.cpp + +ACLOCAL_AMFLAGS = -I m4 diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 120000 index 0000000..42061c0 --- /dev/null +++ b/README @@ -0,0 +1 @@ +README.md \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..3c0ec83 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +CLBOSS The C-Lightning Node Manager +=================================== + +CLBOSS is an automated manager for C-Lightning forwarding nodes. diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..8a84dc9 --- /dev/null +++ b/configure.ac @@ -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 diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..e8ad0ee --- /dev/null +++ b/main.cpp @@ -0,0 +1,4 @@ + +int main (int argc, char **argv) { + return 0; +}