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