Skip to content

Commit

Permalink
Soumission de la version finale du jalon2
Browse files Browse the repository at this point in the history
  • Loading branch information
yanis-sol committed Nov 9, 2023
1 parent 2cb8227 commit 6c4c557
Show file tree
Hide file tree
Showing 5 changed files with 417 additions and 357 deletions.
6 changes: 3 additions & 3 deletions travail/jalon2/Makefile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
CC = gcc
CFLAGS = -Wall
CFLAGS = -Wall -g -Wno-switch

all: server client

server: server.c
@$(CC) $(CFLAGS) -o server server.c
$(CC) $(CFLAGS) -o server server.c

client: client.c
@$(CC) $(CFLAGS) -o client client.c
$(CC) $(CFLAGS) -o client client.c

clean:
rm -f server client
Expand Down
Loading

0 comments on commit 6c4c557

Please sign in to comment.