aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 5e808ede23e17910adbdf2306d3d3c0b3b2a2949 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC      = gcc
CFLAGS  = -std=c99 -target x86_64-apple-darwin20 -g 
RM      = rm -f

default: all

all: server client

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

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