
BIN=/projects/ce/bin

all: html.p 

html.p:
	cc -Aa -g html.c  -o html.p  -D_INCLUDE_POSIX_SOURCE

install: all
	cp html.p ${BIN}


