aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: dd41959456253cdd5dbaf379bf88615274ca9021 (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_client client.c

clean:
	rm -f server client