
TARGET=ttcp.exe

$(TARGET): ttcp.c Makefile
	gcc -Wall -o $(TARGET) ttcp.c
	strip $(TARGET)

clean: 
	rm $(TARGET)

