# SSLeay installation home # SSL = /usr/local/ssl CC = gcc -ansi -pedantic -Wall LIBS = -I$(SSL)/include -L$(SSL)/lib -lcrypto DEBUG = -O #DEBUG = -DDEBUG all: htpasswd md51 htpasswd: htpasswd.c $(CC) $(DEBUG) -o htpasswd htpasswd.c $(LIBS) md51: md51.c $(CC) $(DEBUG) -o md51 md51.c $(LIBS) clean: rm -f a.out core htpasswd md51