1
0

[Add] Makefile

This commit is contained in:
Tony Yang 2021-11-28 17:06:22 +08:00
parent 3ceabad62f
commit 85760b8d89
Signed by: t510599
GPG Key ID: D88388851C28715D

10
Makefile Normal file
View File

@ -0,0 +1,10 @@
server:
g++ *_ser.cpp -o server
client:
g++ *_cli.cpp -o client
all: server client
clean:
rm client server