diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,10 +4,10 @@ CFLAGS = -g -I. -std=gnu99 -Wall -pthread all: server client -server: server.c +server: $(CC) $(CFLAGS) -o snowcast_server snowcast_server_concurrent.c -client: client.c +client: $(CC) $(CFLAGS) -o snowcast_control client.c $(CC) $(CFLAGS) -o snowcast_listener listener.c |