Initial submission

This commit is contained in:
2021-12-19 19:01:38 +08:00
commit 3d3169397f
15 changed files with 1559 additions and 0 deletions

13
udpServer/Makefile Normal file
View File

@@ -0,0 +1,13 @@
CROSS_COMPILE ?=
CC := $(CROSS_COMPILE)gcc
STRIP := $(CROSS_COMPILE)strip
CFLAGS := -O2 -pthread -Wall
BIN := udpServer
all : udpServer.o
$(CC) $(CFLAGS) -o $(BIN) $^
$(STRIP) $(BIN)
-chmod a+x $(BIN)
clean :
rm -f *.o $(BIN)