BIN = /u/strauss/apo/mailer/bin

mail2html : wrap.c mail2html.pl
	cc -o mail2html wrap.c -DPROG=\"$(BIN)/mail2html.pl\"
mailer : wrap.c mailer.sh
	cc -o mailer wrap.c -DPROG=\"$(BIN)/mailer.sh\"
install : mail2html mailer
	- cp mail2html mailer $(BIN)
	chmod 4755 $(BIN)/mail2html $(BIN)/mailer
clean : 
	/bin/rm -f mail2html mailer *~ core
