# OpenBSD

CFLAGS=-g -Wall

TARGETS=rsafp

rsafp: rsafp.c
	$(CC) $(CFLAGS) $< -o $@ -lcrypto

clean:
	rm -f $(TARGETS)
