SRCS = webwrap_1.c

all: webwrap_1 testhtml testhtml2

webwrap_1: ${SRCS}
	cc -o webwrap_1 ${SRCS}

test1:
	./webwrap_1 /bin/sh

test2:
	./webwrap_1 /bin/cat /home/burt/public_html/index.html

testhtml: testhtml.c
	cc -o testhtml testhtml.c


testhtml2: testhtml_2.c
	cc -o testhtml2 testhtml_2.c
