aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 16f2045bb67fd66672de6ee28cbcffc0ff3bde91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC      = gcc
CFLAGS = -g -I. -std=gnu99 -Wall -pthread

all: server client

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

client:
	$(CC) $(CFLAGS) snowcast_control client.c

clean:
	rm -f server client