# LibTcp - Internet stream version (TCP protocol) TARGET=libtcp.a LIBS= CFLAGS=-O0 -g CC=g++ all: $(TARGET) $(TARGET): libtcp.o $(AR) cru libtcp.a libtcp.o libtcp.o: libtcp.h libtcp.c .PHONY: clean clean: rm -f *.o $(TARGET)