summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
author@syxhe <https://t.me/syxhe>2024-08-30 18:49:35 -0500
committer@syxhe <https://t.me/syxhe>2024-08-30 18:49:35 -0500
commit80ed3fd818905cb08ad04abc166a4b2c936955e3 (patch)
tree931a75ba8173fa1bc7678af28355fb5dc6e1ff42 /src/Makefile
parent567d14881df3e405bd9f955c18978cf14ee4c12b (diff)
Rename main & get multithreading going
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index f7d05be..50fcbaf 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -3,7 +3,7 @@ CFLAGS = -Wall -Wextra -Wpedantic -fanalyzer -Wanalyzer-too-complex -Og -g3 -ggd
3LDLIBS = $$(pkg-config --libs libsodium) -lmenu $$(pkg-config --libs ncurses) 3LDLIBS = $$(pkg-config --libs libsodium) -lmenu $$(pkg-config --libs ncurses)
4 4
5SHELL := /usr/bin/env -S bash 5SHELL := /usr/bin/env -S bash
6BINARY_FILES := main.o encryption.o search.o screen.o ll.o main 6BINARY_FILES := encryption.o search.o screen.o ll.o VX-GAMBLEGROUND.o VX-GAMBLEGROUND
7 7
8.PHONY: all clean 8.PHONY: all clean
9 9
@@ -12,10 +12,10 @@ all: $(BINARY_FILES)
12clean: 12clean:
13 rm -rvf $(BINARY_FILES) $(wildcard *.o) 13 rm -rvf $(BINARY_FILES) $(wildcard *.o)
14 14
15main.o: main.c main.h 15VX-GAMBLEGROUND.o: VX-GAMBLEGROUND.c VX-GAMBLEGROUND.h
16encryption.o: encryption.c encryption.h 16encryption.o: encryption.c encryption.h
17search.o: search.c search.h 17search.o: search.c search.h
18screen.o: screen.c screen.h 18screen.o: screen.c screen.h
19ll.o: ll.c ll.h 19ll.o: ll.c ll.h
20 20
21main: $(wildcard *.o) \ No newline at end of file 21VX-GAMBLEGROUND: $(wildcard *.o) \ No newline at end of file