1 2 3 4 5 6 7 8 9 10
CFLAGS = -Wall -g -I../ OBJS = client.o all: client client: $(OBJS) $(CC) -o $@ $(OBJS) clean: rm -rf client $(OBJS)