1.1.0 release

This commit is contained in:
seajee
2025-04-26 01:59:08 +02:00
parent 2813bc77c0
commit 4cfcdeac71
7 changed files with 131 additions and 12 deletions

View File

@@ -2,13 +2,8 @@ CC=gcc
CFLAGS=-Wall -Wextra -ggdb -I.
LDFLAGS=-lpthread
all: hello_server hello_client chat_server chat_client udp_server udp_client
chat_server: examples/chat_server.c
$(CC) $(CFLAGS) -o chat_server examples/chat_server.c $(LDFLAGS)
chat_client: examples/chat_client.c
$(CC) $(CFLAGS) -o chat_client examples/chat_client.c $(LDFLAGS)
all: hello_server hello_client hello_server_v6 hello_client_v6 chat_server \
chat_client udp_server udp_client
hello_server: examples/hello_server.c
$(CC) $(CFLAGS) -o hello_server examples/hello_server.c $(LDFLAGS)
@@ -16,6 +11,18 @@ hello_server: examples/hello_server.c
hello_client: examples/hello_client.c
$(CC) $(CFLAGS) -o hello_client examples/hello_client.c $(LDFLAGS)
hello_server_v6: examples/hello_server_v6.c
$(CC) $(CFLAGS) -o hello_server_v6 examples/hello_server_v6.c $(LDFLAGS)
hello_client_v6: examples/hello_client_v6.c
$(CC) $(CFLAGS) -o hello_client_v6 examples/hello_client_v6.c $(LDFLAGS)
chat_server: examples/chat_server.c
$(CC) $(CFLAGS) -o chat_server examples/chat_server.c $(LDFLAGS)
chat_client: examples/chat_client.c
$(CC) $(CFLAGS) -o chat_client examples/chat_client.c $(LDFLAGS)
udp_server: examples/udp_server.c
$(CC) $(CFLAGS) -o udp_server examples/udp_server.c $(LDFLAGS)
@@ -27,5 +34,7 @@ clean:
rm -rf chat_client
rm -rf hello_server
rm -rf hello_client
rm -rf hello_server_v6
rm -rf hello_client_v6
rm -rf udp_server
rm -rf udp_client