diff options
author | midipix <writeonce@midipix.org> | 2024-04-28 17:13:02 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2024-04-28 17:38:46 +0000 |
commit | 646efeb80e90cdc80e35a337273943b6ba87bb6f (patch) | |
tree | c444be711aceb1472eb6c1d16e707bc02370b7c7 | |
download | treebnf-646efeb80e90cdc80e35a337273943b6ba87bb6f.tar.bz2 treebnf-646efeb80e90cdc80e35a337273943b6ba87bb6f.tar.xz |
created repository.
-rw-r--r-- | .gitignore | 23 | ||||
-rw-r--r-- | COPYING.TREEBNF | 20 | ||||
-rw-r--r-- | README | 2 |
3 files changed, 45 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5df402d --- /dev/null +++ b/.gitignore @@ -0,0 +1,23 @@ +Makefile +app.tag +dirs.tag +host.tag +tree.tag +version.tag + +cfgdefs.mk +usrdefs.mk +ccenv/host.mk +ccenv/native.mk + +config.log + +*~ +*.o +*.a +*.so +*.gch +*.exe +/bin +/build +/lib diff --git a/COPYING.TREEBNF b/COPYING.TREEBNF new file mode 100644 index 0000000..23c9303 --- /dev/null +++ b/COPYING.TREEBNF @@ -0,0 +1,20 @@ +/*****************************************************************************/ +/* */ +/* treebnf: a tree oriented bnf library */ +/* */ +/* Copyright (C) 2024 SysDeer Technologies, LLC */ +/* */ +/* 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, either version 2 of the License, or */ +/* (at your option) version 3 of the License. */ +/* */ +/* 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 <http://www.gnu.org/licenses/>. */ +/* */ +/*****************************************************************************/ @@ -0,0 +1,2 @@ +treebnf: a tree oriented bnf library +------------------------------------ |