CXXFLAGS= -Wall -O4
OBJS=rsakeyfind.o

all: rsakeyfind

rsakeyfind: $(OBJS)
	$(CXX) -o rsakeyfind $(OBJS)

clean:
	@rm -f rsakeyfind *~ \#* $(OBJS)

