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