-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
executable file
·20 lines (16 loc) · 906 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
################################################################################
# Makefile #
# #
# Description: This file contains the make rules for Recitation 1. #
# #
# Authors: Athula Balachandran <[email protected]>, #
# Wolf Richter <[email protected]> #
# #
################################################################################
default: echo_server echo_client
echo_server:
@gcc echo_server.c -o lisod
echo_client:
@gcc echo_client.c -o echo_client -Wall -Werror
clean:
@rm echo_server echo_client