## Makefile for ClientLib

# What compiler to use? Better make sure it understands ANSI C
CC = gcc

# Flags to pass to the compiler
CFLAGS = -O2
LDFLAGS = 

# Any Libraries we need to worry about?
LIBS = 

### You shouldn't need to modify anything below here.

OBJECTS = connectUDP.o connectTCP.o connectsock.o

all: libclient.a

libclient.a: $(OBJECTS)
	ar -r libclient.a $(OBJECTS); ranlib libclient.a

clean:
	rm -rf $(OBJECTS) libclient.a
