diff options
| 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 |
| commit | 75a94a96eabb863f21ec5478018886e9c892a5a4 (patch) | |
| tree | c08ffd324830d5699f249baac5aedc79b5934642 /src/Makefile | |
| parent | 72b02200dc97d58830e32655886565879b288d60 (diff) | |
Work on the ncurses part
Diffstat (limited to 'src/Makefile')
| -rw-r--r-- | src/Makefile | 5 |
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 | ||
| 14 | main: main.c main.h search.o encryption.o ll.o | 14 | main: main.c search.o encryption.o ll.o |
| 15 | 15 | ||
| 16 | encryption.o: encryption.c encryption.h | 16 | encryption.o: encryption.c encryption.h |
| 17 | screen: screen.c screen.h | ||
| 18 | $(CC) $(CFLAGS) screen.c -o screen -lncurses -lmenu | ||
| 19 | |||
| 17 | search.o: search.c search.h | 20 | search.o: search.c search.h |
| 18 | ll.o: ll.c ll.h \ No newline at end of file | 21 | ll.o: ll.c ll.h \ No newline at end of file |
