Skip to content

Commit

Permalink
c backend rewrite, remove db, crypto and examples
Browse files Browse the repository at this point in the history
  • Loading branch information
smurfd committed Jan 7, 2025
1 parent 3d21147 commit 115ac5f
Show file tree
Hide file tree
Showing 22 changed files with 3 additions and 845 deletions.
23 changes: 2 additions & 21 deletions lotordb/src/rewrite/lotordb/src/Makefile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
CC := gcc -O3 -Wall -pedantic -std=c99
BUILD := .build

all: mkbuilddir hash ecc crypto crypto_server crypto_client db_keystore db_tables test
local: mkbuilddir hash ecc crypto crypto_server crypto_client db_keystore db_tables test_local
all: mkbuilddir hash ecc test
local: mkbuilddir hash ecc test_local

mkbuilddir:
mkdir -p ${BUILD}
Expand All @@ -13,25 +13,6 @@ hash:
ecc:
${CC} -c ecc.c -o .build/ecc.o

crypto:
${CC} -c crypto.c -o ${BUILD}/crypto.o

crypto_server:
${CC} -c examples/tables_example_server.c -o ${BUILD}/tables_server.o
${CC} -c examples/keys_example_server.c -o ${BUILD}/keys_server.o
${CC} -c crypto_server.c -o ${BUILD}/crypto_server.o

crypto_client:
${CC} -c examples/tables_example_client.c -o ${BUILD}/tables_client.o
${CC} -c examples/keys_example_client.c -o ${BUILD}/keys_client.o
${CC} -c crypto_client.c -o ${BUILD}/crypto_client.o

db_keystore:
${CC} -c db_keystore.c -o ${BUILD}/db_keystore.o

db_tables:
${CC} -c db_tables.c -o ${BUILD}/db_tables.o

test:
make -Ctests

Expand Down
134 changes: 0 additions & 134 deletions lotordb/src/rewrite/lotordb/src/crypto.c

This file was deleted.

115 changes: 0 additions & 115 deletions lotordb/src/rewrite/lotordb/src/crypto.h

This file was deleted.

91 changes: 0 additions & 91 deletions lotordb/src/rewrite/lotordb/src/crypto_client.c

This file was deleted.

9 changes: 0 additions & 9 deletions lotordb/src/rewrite/lotordb/src/crypto_client.h

This file was deleted.

Loading

0 comments on commit 115ac5f

Please sign in to comment.