Initial commit

master
teknomunk 7 months ago
parent 011fa8be0b
commit c302d0010c

3
.gitignore vendored

@ -0,0 +1,3 @@
obj
squishyfish
squishyfish.debug

30
.gitmodules vendored

@ -0,0 +1,30 @@
[submodule "src/http-common"]
path = src/http
url = https://gitea.polaris-1.work/teknomunk/http-common.git
[submodule "src/ffdb"]
path = src/ffdb
url = https://teknomunk@gitea.polaris-1.work/teknomunk/ffdb.git
[submodule "src/activitystreams"]
path = src/activitystreams
url = https://teknomunk@gitea.polaris-1.work/teknomunk/activitystreams.git
[submodule "src/collections"]
path = src/collections
url = https://teknomunk@gitea.polaris-1.work/teknomunk/collections.git
[submodule "src/json"]
path = src/json
url = https://teknomunk@gitea.polaris-1.work/teknomunk/json.git
[submodule "src/util"]
path = src/util
url = https://teknomunk@gitea.polaris-1.work/teknomunk/util.git
[submodule "src/reflect"]
path = src/reflect
url = https://teknomunk@gitea.polaris-1.work/teknomunk/reflect.git
[submodule "tools/builder"]
path = tools/builder
url = https://teknomunk@gitea.polaris-1.work/teknomunk/builder.git
[submodule "src/json-ld"]
path = src/json-ld
url = https://teknomunk@gitea.polaris-1.work/teknomunk/json-ld.git
[submodule "src/sha256"]
path = src/sha256
url = https://gitea.polaris-1.work/Mirrors/sha256.git

@ -1,2 +1,7 @@
# squishyfish
# Build
$ ./build.sh

@ -0,0 +1,16 @@
#!/bin/bash
set -ex
NAME=squishyfish
git submodule update --init --recursive
rm debug release 2>/dev/null || true
ruby tools/builder/build.rb src/$NAME.build.json
mv obj/$NAME.bin $NAME.debug
cp $NAME.debug{,.tmp}
mv $NAME.debug.tmp $NAME
strip $NAME

@ -0,0 +1 @@
Subproject commit d8fa4876c55670287e41c1698f2500881d0b02d4

@ -0,0 +1 @@
Subproject commit d8fa4876c55670287e41c1698f2500881d0b02d4

@ -0,0 +1 @@
Subproject commit 7ffee8875d10e1d3a52c5f8817112d235bec53bf

@ -0,0 +1 @@
Subproject commit c57a8bb19fedfb717ac0ae498b2e121f96d3507f

@ -0,0 +1 @@
Subproject commit d6ef4a67ba6c5eb2b1101723cf86286d7aa1602e

@ -0,0 +1 @@
Subproject commit d4b6e913836a7803d942323236d160db58ecc6c0

@ -0,0 +1 @@
Subproject commit 4acc7829bf2e27a2c98695ce622dbfe9d4cc6013

@ -0,0 +1,8 @@
#include <stdio.h>
#include <stdlib.h>
int main( int argc, char* argv[] )
{
return EXIT_SUCCESS;
}

@ -0,0 +1 @@
Subproject commit 37d111960ba44b5bd721074c14f12f1bd66e69ed

@ -0,0 +1 @@
Subproject commit c6cf8e509a713ef28c0b1b2f12578735b6402323

@ -0,0 +1,25 @@
{
"cxx":{
"cc": "gcc",
"ld": "gcc",
"ar": "ar",
"flags": "-g -MP -MD -Os -Og -Werror -flto -Wall -I./ -Isrc/",
"output":"obj/squishyfish",
"objdir":"obj/squishyfish"
},
"tools":["cxx"],
"sources":[
"src/ap",
"src/collections",
"src/ffdb",
"src/json",
"src/util",
"src/http",
"src/model",
"src/view",
"src/controller",
"src/main.c"
]
}

@ -0,0 +1 @@
Subproject commit e133427bb7da0224fc365252406024c207418863

@ -0,0 +1 @@
Subproject commit 41f6f54239a9b2f6638da67554db1305f2d69562
Loading…
Cancel
Save