aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 78257f0b51d165dc3b749d71c63b363d05a799ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC      = gcc
CFLAGS = -o

all: server client

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

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

clean:
	rm -f server client