На ветке master

Ваша ветка обновлена в соответствии с «origin/master».
Изменения, которые будут включены в коммит:
	новый файл:    Makefile
This commit is contained in:
2019-01-16 16:21:48 +03:00
parent 968cd3ec32
commit 184a45f96d

10
Makefile Normal file
View File

@@ -0,0 +1,10 @@
RM = rm -f
APP_NAME = udpserver
all: udpserver
udpserver: udpserver.cpp json11.cpp
@g++ -o $(APP_NAME) $(APP_NAME).cpp -std=c++11 json11.cpp -pthread -s -O2
clean:
@$(RM) *.o forwarder $(APP_NAME)