From: Huck Boles Date: Fri, 23 Dec 2022 22:54:46 +0000 (-0600) Subject: version 0.2.0 X-Git-Url: https://git.huck.website/?a=commitdiff_plain;h=2dafee8fc53a8b9a5e959a399c40841e52045e7e;p=odot.git version 0.2.0 --- diff --git a/.gitignore b/.gitignore index 6074f07..5b01cd5 100644 --- a/.gitignore +++ b/.gitignore @@ -6,5 +6,3 @@ !Makefile !*.c !*.h -!*.o -sqlite3.c diff --git a/Makefile b/Makefile index ec5faf1..a4c8691 100644 --- a/Makefile +++ b/Makefile @@ -27,10 +27,10 @@ link: $(OBJECTS) $(CC) $(OBJECTS) $(CFLAGS) -o $(PROG) build: $(CFILE) $(HEADER) sqlite3.o - $(CC) $(CFILE) sqlite3.o $(CFLAGS) -o $(PROG) + $(CC) $(CFILE) sqlite3.c $(CFLAGS) -o $(PROG) install: $(CFILE) $(HEADER) sqlite3.o - $(CC) $(CFILE) sqlite3.o $(CFLAGS) -o $(DESTDIR)/$(PROG) + $(CC) $(CFILE) sqlite3.c $(CFLAGS) -o $(DESTDIR)/$(PROG) debug: $(CFILE) $(CC) $(CFILE) sqlite3.o $(CFLAGS) -ggdb3 -Og -o $(PROG) diff --git a/README b/README index 26d426d..6534ff7 100644 --- a/README +++ b/README @@ -24,7 +24,11 @@ Installation: $ tar -xzvf odot-0.2.0.tar.gz # Build odot + Global install: $ sudo make install + Local install: + $ make clean sql build + Usage: diff --git a/sha256sums b/sha256sums index 46de0fa..39b71b7 100644 --- a/sha256sums +++ b/sha256sums @@ -1,10 +1,10 @@ -c9d0adec9cba1e76de1007069cb5d440a050132ad0d15558ff60ec1377b9e178 Makefile +3e3b42ee26829dc19f4eda421dd012b45326b01229baaa549d1f4f8c129f2538 Makefile 42e2b1cff2f7e7f52a7381023c49c38ea758aee4d1d10d1201dd04648454a77f database.c aa2e0331dd78287d9a1a0644081185247e524224c80d0f5854f58b0260d7b699 odot.c 90328176ffceb8713eb28057f5f32248f931beba0baaacf7d318359eb6ec4555 odot.h -4b9358d84670915008a62c55436fb6408878e7fdcd2fa675e6b58db1458ab529 sqlite3.o +aab978bfc227dda5adcadf176bf7fe53544f0a7b512a38d8162faf9dcec1f0d9 sqlite3.c 525ca99bf1f2bd871bb85aaa0ee3951d8e1db5434a73f23a3ac67696ab26a38c sqlite3.h -6bccb45216ed0785e70b6b7c6cf19f53cabe78abfde9956c8eeaefb4f8694e60 README +f6687d0aabd71e448071bd2360b3c4f26a0fb5704d3b5ef295e2b2f561301392 README 3972dc9744f6499f0f9b2dbf76696f2ae7ad8af9b23dde66d6af86c9dfb36986 LICENSE -aa6e7878507444f80b4778714c425d5ad8a3e9df75fa880c518a560ca1b64908 odot-0.2.0.tar.gz -3f73cac6de39a268132f47f41502776f8e9abfb7f95a39ca271396ab71d369f1 odot-0.2.0.tar.gz.sig +bafd06b3499fcabc448e106f3f8ded86fc72b6ef56fe97e21d861fd3b6e2bd89 odot-0.2.0.tar.gz +19e743ffe25ecb9bc474e9407b74aac64215046a38b8ce49200ba1dfaaa0f347 odot-0.2.0.tar.gz.sig diff --git a/sqlite3.o b/sqlite3.o deleted file mode 100644 index fa25a93..0000000 Binary files a/sqlite3.o and /dev/null differ