summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2024-07-30 20:04:24 -0500
committer@syxhe <https://t.me/syxhe>2024-07-30 20:04:24 -0500
commitf6f5e09d00e2054e1f159bdbb3fdb2fe11794876 (patch)
treea28e7a5b80730f5dc3fd71f9a41f0b6af907b266 /src/Makefile
parent21c242d0316a296fcd27072fb6dd46ccc6a76bd1 (diff)
Fix bad phrasegen randomness (what was I smoking lmao)
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Makefile b/src/Makefile
index a828be2..3ac4f75 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -13,6 +13,7 @@ clean:
13 13
14 14
15main: main.c search.o encryption.o ll.o 15main: main.c search.o encryption.o ll.o
16 set -e -o pipefail && $(CC) $(CFLAGS) $$(pkg-config --cflags libsodium) main.c -o main $$(pkg-config --libs libsodium)
16 17
17screen: screen.c screen.h 18screen: screen.c screen.h
18 set -e -o pipefail && $(CC) $(CFLAGS) $$(pkg-config --cflags libsodium) screen.c -o screen $$(pkg-config --libs libsodium) -lmenu $$(pkg-config --libs ncurses) 19 set -e -o pipefail && $(CC) $(CFLAGS) $$(pkg-config --cflags libsodium) screen.c -o screen $$(pkg-config --libs libsodium) -lmenu $$(pkg-config --libs ncurses)