Home | History | Annotate | Line # | Download | only in signature
Makefile revision 1.1.1.1.2.2
      1  1.1.1.1.2.2  martin #
      2  1.1.1.1.2.2  martin # To run the demos when linked with a shared library (default):
      3  1.1.1.1.2.2  martin #
      4  1.1.1.1.2.2  martin #    LD_LIBRARY_PATH=../.. ./EVP_Signature_demo
      5  1.1.1.1.2.2  martin 
      6  1.1.1.1.2.2  martin CFLAGS = -I../../include -g -Wall
      7  1.1.1.1.2.2  martin LDFLAGS = -L../..
      8  1.1.1.1.2.2  martin LDLIBS = -lcrypto
      9  1.1.1.1.2.2  martin 
     10  1.1.1.1.2.2  martin all: EVP_Signature_demo rsa_pss_direct rsa_pss_hash
     11  1.1.1.1.2.2  martin 
     12  1.1.1.1.2.2  martin %.o: %.c
     13  1.1.1.1.2.2  martin 	$(CC) $(CFLAGS) -c $<
     14  1.1.1.1.2.2  martin 
     15  1.1.1.1.2.2  martin EVP_Signature_demo: EVP_Signature_demo.o
     16  1.1.1.1.2.2  martin rsa_pss_direct: rsa_pss_direct.o
     17  1.1.1.1.2.2  martin rsa_pss_hash: rsa_pss_hash.o
     18  1.1.1.1.2.2  martin 
     19  1.1.1.1.2.2  martin test: ;
     20  1.1.1.1.2.2  martin 
     21  1.1.1.1.2.2  martin clean:
     22  1.1.1.1.2.2  martin 	$(RM) *.o EVP_Signature_demo rsa_pss_direct rsa_pss_hash
     23