mirror of
				https://github.com/postgres/postgres.git
				synced 2025-11-03 09:13:20 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			85 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			85 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# $Header: /cvsroot/pgsql/contrib/pgcrypto/Makefile,v 1.9 2001/09/30 22:18:29 momjian Exp $
 | 
						|
#
 | 
						|
 | 
						|
subdir = contrib/pgcrypto
 | 
						|
top_builddir = ../..
 | 
						|
include $(top_builddir)/src/Makefile.global
 | 
						|
 | 
						|
# either 'builtin', 'mhash', 'openssl'
 | 
						|
cryptolib = builtin
 | 
						|
 | 
						|
# either 'builtin', 'system'
 | 
						|
cryptsrc = builtin
 | 
						|
 | 
						|
# Random source, preferred order:
 | 
						|
# 'dev'      - read from random device
 | 
						|
#
 | 
						|
# 'openssl'  - use openssl PRNG.
 | 
						|
#              Note that currently pgcrypto does not do any
 | 
						|
#              entropy feeding to it
 | 
						|
#              This works ofcouse only with cryptolib = openssl
 | 
						|
#
 | 
						|
# 'silly'    - use libc random() - very weak
 | 
						|
random = silly
 | 
						|
random_dev = \"/dev/urandom\"
 | 
						|
 | 
						|
##########################
 | 
						|
 | 
						|
ifeq ($(cryptolib), builtin)
 | 
						|
CRYPTO_CFLAGS =
 | 
						|
CRYPTO_LDFLAGS =
 | 
						|
SRCS = md5.c sha1.c internal.c blf.c rijndael.c
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(cryptolib), openssl)
 | 
						|
CRYPTO_CFLAGS = -I/usr/include/openssl
 | 
						|
CRYPTO_LDFLAGS = -lcrypto
 | 
						|
SRCS = openssl.c
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(cryptolib), mhash)
 | 
						|
CRYPTO_CFLAGS = -I/usr/local/include
 | 
						|
CRYPTO_LDFLAGS = -L/usr/local/lib -lmcrypt -lmhash -lltdl
 | 
						|
SRCS = mhash.c
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(cryptsrc), builtin)
 | 
						|
SRCS += crypt-blowfish.c crypt-des.c crypt-md5.c 
 | 
						|
else
 | 
						|
CRYPTO_CFLAGS += -DPX_SYSTEM_CRYPT
 | 
						|
endif
 | 
						|
 | 
						|
ifeq ($(random), dev)
 | 
						|
CRYPTO_CFLAGS += -DRAND_DEV=$(random_dev)
 | 
						|
endif
 | 
						|
ifeq ($(random), openssl)
 | 
						|
CRYPTO_CFLAGS += -DRAND_OPENSSL
 | 
						|
endif
 | 
						|
ifeq ($(random), silly)
 | 
						|
CRYPTO_CFLAGS += -DRAND_SILLY
 | 
						|
endif
 | 
						|
 | 
						|
MODULE_big	:= pgcrypto
 | 
						|
SRCS		+= pgcrypto.c px.c px-hmac.c px-crypt.c misc.c \
 | 
						|
			crypt-gensalt.c random.c
 | 
						|
OBJS		:= $(SRCS:.c=.o)
 | 
						|
DOCS		:= README.pgcrypto
 | 
						|
DATA_built	:= pgcrypto.sql
 | 
						|
EXTRA_CLEAN	:= gen-rtab
 | 
						|
 | 
						|
PG_CPPFLAGS	:= $(CRYPTO_CFLAGS) -I$(srcdir) 
 | 
						|
SHLIB_LINK 	:= $(CRYPTO_LDFLAGS)
 | 
						|
 | 
						|
REGRESS := init md5 sha1 hmac-md5 hmac-sha1 blowfish rijndael \
 | 
						|
		crypt-des crypt-md5 crypt-blowfish crypt-xdes 
 | 
						|
 | 
						|
include $(top_srcdir)/contrib/contrib-global.mk
 | 
						|
 | 
						|
rijndael.o: rijndael.tbl
 | 
						|
 | 
						|
rijndael.tbl:
 | 
						|
	$(CC) $(CPPFLAGS) $(CFLAGS) -DPRINT_TABS rijndael.c -o gen-rtab
 | 
						|
	./gen-rtab > rijndael.tbl
 | 
						|
 |