diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..57e6324 --- /dev/null +++ b/Makefile @@ -0,0 +1,11 @@ +all: chatty server send + +clean: + rm -f server chatty send _id _clients + +chatty: + gcc -ggdb -Wall -pedantic -std=c99 -o chatty chatty.c +server: + gcc -ggdb -Wall -pedantic -std=c99 -o server server.c +send: + gcc -ggdb -Wall -pedantic -std=c99 -o send send.c |