aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: be4e15954ade5f39ccf33c02b4d2ba8493c17203 (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 
# CFLAGS = -std=c99 -Wall -g

default: all

all: server client

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

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