summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2024-07-17 23:41:36 -0500
committer@syxhe <https://t.me/syxhe>2024-07-17 23:41:36 -0500
commit75a94a96eabb863f21ec5478018886e9c892a5a4 (patch)
treec08ffd324830d5699f249baac5aedc79b5934642 /src/Makefile
parent72b02200dc97d58830e32655886565879b288d60 (diff)
Work on the ncurses part
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile b/src/Makefile
index c140071..94d2674 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -11,8 +11,11 @@ clean:
11 rm -rvf $(BINARY_FILES) 11 rm -rvf $(BINARY_FILES)
12 12
13 13
14main: main.c main.h search.o encryption.o ll.o 14main: main.c search.o encryption.o ll.o
15 15
16encryption.o: encryption.c encryption.h 16encryption.o: encryption.c encryption.h
17screen: screen.c screen.h
18 $(CC) $(CFLAGS) screen.c -o screen -lncurses -lmenu
19
17search.o: search.c search.h 20search.o: search.c search.h
18ll.o: ll.c ll.h \ No newline at end of file 21ll.o: ll.c ll.h \ No newline at end of file