-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
22 lines (16 loc) · 1.08 KB
/
Makefile
File metadata and controls
22 lines (16 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
all: client.c server.c clientcommands.c servercommands.c networking.c sharedfunctions.c linkedlist.c
gcc -Wall client.c clientcommands.c networking.c sharedfunctions.c -lssl -lcrypto -o client
gcc -Wall server.c servercommands.c networking.c sharedfunctions.c queue.c linkedlist.c -pthread -lssl -lcrypto -o server
debug: client.c server.c clientcommands.c servercommands.c networking.c sharedfunctions.c linkedlist.c
gcc -g -Wall client.c clientcommands.c networking.c sharedfunctions.c -lssl -lcrypto -o client
gcc -g -Wall server.c servercommands.c networking.c sharedfunctions.c queue.c linkedlist.c -pthread -lssl -lcrypto -o server
client: client.c clientcommands.c networking.c sharedfunctions.c
gcc -g -Wall client.c clientcommands.c networking.c sharedfunctions.c -lssl -lcrypto -o client
server: server.c servercommands.c networking.c sharedfunctions.c linkedlist.c
gcc -g -Wall server.c servercommands.c networking.c sharedfunctions.c queue.c linkedlist.c -pthread -lssl -lcrypto -o server
clean:
rm server
rm client
setup:
cp client ../testclient/
cp server ../testserver/