summaryrefslogtreecommitdiff
path: root/src/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile')
-rw-r--r--src/Makefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/Makefile b/src/Makefile
index 39369a1..f869a31 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,7 +1,7 @@
1CC = gcc 1CC = gcc
2CFLAGS = -Wall -Wextra -Wpedantic -fanalyzer -Wanalyzer-too-complex -Og -g3 -ggdb 2CFLAGS = -Wall -Wextra -Wpedantic -fanalyzer -Wanalyzer-too-complex -Og -g3 -ggdb
3 3
4BINARY_FILES := encrypt search 4BINARY_FILES := encrypt search ll.o
5 5
6.PHONY: all clean 6.PHONY: all clean
7 7
@@ -13,5 +13,7 @@ clean:
13encrypt: encryption.c encryption.h 13encrypt: encryption.c encryption.h
14 $(CC) $(CFLAGS) encryption.c -o encrypt 14 $(CC) $(CFLAGS) encryption.c -o encrypt
15 15
16search: search.c search.h 16search: search.c search.h ll.o
17 $(CC) $(CFLAGS) search.c -o search \ No newline at end of file 17 $(CC) $(CFLAGS) search.c ll.o -o search
18
19ll.o: ll.c ll.h \ No newline at end of file