Skip to content

Commit 6192e98

Browse files
committed
Add Makefile for the compilation
1 parent 245833e commit 6192e98

File tree

7 files changed

+11
-0
lines changed

7 files changed

+11
-0
lines changed

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.PHONY: all
2+
3+
all: compile_client compile_server
4+
5+
compile_client: client_executable
6+
7+
client_executable: ./Client/client.c
8+
gcc -o ./Client/client ./Client/client.c -L./Client/ -lclient -lserver
9+
10+
compile_server: ./Server/server.c
11+
gcc -o ./Server/server ./Server/server.c -L./Server/ -lclient -lserver
File renamed without changes.
File renamed without changes.
File renamed without changes.
16.2 KB
Binary file not shown.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)