diff options
Diffstat (limited to 'doc/examples/Makefile')
-rw-r--r-- | doc/examples/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/examples/Makefile b/doc/examples/Makefile index 6706aaaf6..a25782f89 100644 --- a/doc/examples/Makefile +++ b/doc/examples/Makefile @@ -65,6 +65,10 @@ encrypt: encrypt.cpp $(CXX) $(FLAGS) $? $(LIBS) -o $@ @$(STRIP) $@ +ecdsa: ecdsa.cpp + $(CXX) $(FLAGS) $? $(LIBS) -o $@ + @$(STRIP) $@ + factor: factor.cpp $(CXX) $(FLAGS) $? $(LIBS) -o $@ @$(STRIP) $@ |