mirror of https://github.com/openssl/openssl.git
				
				
				
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			310 B
		
	
	
	
		
			Makefile
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			310 B
		
	
	
	
		
			Makefile
		
	
	
	
#
 | 
						|
# To run the demos when linked with a shared library (default):
 | 
						|
#
 | 
						|
#    LD_LIBRARY_PATH=../.. ./rsa_encode
 | 
						|
 | 
						|
CFLAGS = -I../../include -g -Wall
 | 
						|
LDFLAGS = -L../..
 | 
						|
LDLIBS = -lcrypto
 | 
						|
 | 
						|
all: ec_encode rsa_encode
 | 
						|
 | 
						|
%.o: %.c
 | 
						|
	$(CC) $(CFLAGS) -c $<
 | 
						|
 | 
						|
%_encode: %_encode.o
 | 
						|
 | 
						|
test: ;
 | 
						|
 | 
						|
clean:
 | 
						|
	$(RM) *.o rsa_encode ec_encode
 |