Initial commit. Added Notify class, makefile and common header

This commit is contained in:
2022-10-05 16:48:30 +03:00
commit ccfdab6037
7 changed files with 325 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
all:
make server
make client
clean:
rm -f server
rm -f client
server:
g++ -Wall -Wextra -Wfatal-errors -o server server.cpp Notify.cpp
client:
g++ -Wall -Wextra -Wfatal-errors -o client client.cpp Notify.cpp
.PHONY: all server client clean