aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 654acc8607c94232566fb5d60da4570ad7cde360 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC      = gcc
# CFLAGS  = -std=c99 -target x86_64-apple-darwin20 -g 
# CFLAGS = -g -I. -std=gnu99 -Wall -pthread
CFLAGS = -o

all: server client

server:
	$(CC) $(CFLAGS) snowcast_server server.c

client:
	$(CC) $(CFLAGS) snowcast_control client.c
	$(CC) $(CFLAGS) snowcast_listener listener.c
	
clean:
	rm -fv snowcast_control snowcast_listener snowcast_server