Skip to content

Commit

Permalink
Soumission J2
Browse files Browse the repository at this point in the history
  • Loading branch information
yanis-sol committed Oct 21, 2023
1 parent f7d2b58 commit 2cb8227
Show file tree
Hide file tree
Showing 9 changed files with 1,372 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
14 changes: 14 additions & 0 deletions travail/jalon2/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
CC = gcc
CFLAGS = -Wall

all: server client

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

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

clean:
rm -f server client

Loading

0 comments on commit 2cb8227

Please sign in to comment.