aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 1603f38770c5e6eea00b42496eb65f7e9fd1348c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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

new:
	$(CC) $(CFLAGS) -o test snowcast_server_concurrent.c