1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- #
- # Software License
- #
- # Copyright (C) 2021-05-24 Xoronos
- #
- # This program 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, version 3.
- #
- # 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 General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <https://www.gnu.org/licenses/>.
- #
- # Liabilities
- #
- # The software is provided "AS IS" without any warranty of any kind, either expressed,
- # implied, or statutory, including, but not limited to, any warranty that the software
- # will conform to specifications, any implied warranties of merchantability, fitness
- # for a particular purpose, and freedom from infringement, and any warranty that the
- # documentation will conform to the software, or any warranty that the software will
- # be error free.
- #
- # In no event shall Xoronos be liable for any damages, including, but not limited to,
- # direct, indirect, special or consequential damages, arising out of, resulting from,
- # or in any way connected with this software, whether or not based upon warranty,
- # contract, tort, or otherwise, whether or not injury was sustained by persons or
- # property or otherwise, and whether or not loss was sustained from, or arose out of
- # the results of, or use of, the software or services provided hereunder.
- #
- # To request the provided software under a different license you can contact us at
- # support@xoronos.com
- #
- libdir=../../build/coderef/examples-256/flatdump
- outfile=../../code/lib/xrn_interfaces/python/xrnlib.h
- cat $libdir/default_permutation_settings.h > $outfile
- cat $libdir/default_encoding_settings.h >> $outfile
- cat $libdir/xrn_settings.h >> $outfile
- cat $libdir/xrn_common.h >> $outfile
- cat $libdir/xrn_arithmetic.h >> $outfile
- cat $libdir/xrn_encoder.h >> $outfile
- cat $libdir/xrn_core.h >> $outfile
- cat $libdir/xrn_miners.h >> $outfile
- cat $libdir/xrn_crypto.h >> $outfile
|