# makefile for httpcat

CC = gcc
CFLAGS = -Wall -O2
LDFLAGS = -lsocket -lnsl

httpcat: httpcat.o
	$(CC) $^ $(LDFLAGS) -o $@
	strip $@
